You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
4.3 KiB
129 lines
4.3 KiB
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
cmake_minimum_required( VERSION 2.8 )
|
|
|
|
|
|
##### general package setup #####################
|
|
|
|
project( tdegraphics )
|
|
set( VERSION 3.5.13 )
|
|
|
|
|
|
##### include essential cmake modules ###########
|
|
|
|
include( FindPkgConfig )
|
|
include( CheckIncludeFile )
|
|
include( CheckTypeSize )
|
|
include( CheckCSourceCompiles )
|
|
include( CheckCXXSourceCompiles )
|
|
include( CheckLibraryExists )
|
|
|
|
|
|
##### include our cmake modules #################
|
|
|
|
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
|
include( TDEMacros )
|
|
|
|
|
|
##### setup install paths #######################
|
|
|
|
include( TDESetupPaths )
|
|
tde_setup_paths( )
|
|
|
|
|
|
##### optional stuff ############################
|
|
|
|
option( WITH_T1LIB "Enable t1lib support" OFF )
|
|
option( WITH_LIBPAPER "Enable libpaper support" OFF )
|
|
OPTION( WITH_TIFF "Enable tiff support (kfile-plugins)" OFF )
|
|
OPTION( WITH_OPENEXR "Enable openexr support (kfile-plugins)" OFF )
|
|
OPTION( WITH_PDF "Enable pdf support (kfile-plugins)" OFF )
|
|
|
|
|
|
##### user requested modules ####################
|
|
|
|
|
|
option( BUILD_ALL "Build all" OFF )
|
|
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
|
|
option( BUILD_KAMERA "Build kamera" ${BUILD_ALL} )
|
|
option( BUILD_KCOLOREDIT "Build kcoloredit" ${BUILD_ALL} )
|
|
option( BUILD_KDVI "Build kdvi" ${BUILD_ALL} )
|
|
option( BUILD_KFAX "Build kfax" ${BUILD_ALL} )
|
|
option( BUILD_KFAXVIEW "Build kfaxview" ${BUILD_ALL} )
|
|
option( BUILD_KFILE_PLUGINS "Build kfile-plugins" ${BUILD_ALL} )
|
|
option( BUILD_KGAMMA "Build kgamma" ${BUILD_ALL} )
|
|
option( BUILD_KGHOSTVIEW "Build kghostview" ${BUILD_ALL} )
|
|
option( BUILD_KICONEDIT "Build kiconedit" ${BUILD_ALL} )
|
|
option( BUILD_KMRML "Build kmrml" ${BUILD_ALL} )
|
|
option( BUILD_KOLOURPAINT "Build kolourpaint" ${BUILD_ALL} )
|
|
option( BUILD_KOOKA "Build kooka" ${BUILD_ALL} )
|
|
option( BUILD_KPDF "Build kpdf" ${BUILD_ALL} )
|
|
option( BUILD_KPOVMODELER "Build kpovmodeler" ${BUILD_ALL} )
|
|
option( BUILD_KRULER "Build kruler" ${BUILD_ALL} )
|
|
option( BUILD_KSNAPSHOT "Build ksnapshot" ${BUILD_ALL} )
|
|
option( BUILD_KSVG "Build ksvg" ${BUILD_ALL} )
|
|
option( BUILD_KUICKSHOW "Build kuickshow" ${BUILD_ALL} )
|
|
option( BUILD_KVIEW "Build kview" ${BUILD_ALL} )
|
|
option( BUILD_KVIEWSHELL "Build kviewshell" ${BUILD_ALL} )
|
|
option( BUILD_LIBKSCAN "Build libkscan" ${BUILD_ALL} )
|
|
|
|
|
|
##### configure checks ##########################
|
|
|
|
include( ConfigureChecks.cmake )
|
|
|
|
|
|
###### global compiler settings #################
|
|
|
|
add_definitions(
|
|
-DHAVE_CONFIG_H
|
|
)
|
|
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
|
|
set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" )
|
|
set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" )
|
|
|
|
|
|
##### tdegraphics directories ###################
|
|
|
|
if( BUILD_KFILE_PLUGINS OR BUILD_GHOSTKVIEW )
|
|
add_subdirectory( kghostview/dscparse )
|
|
endif( )
|
|
|
|
tde_conditional_add_subdirectory( BUILD_DOC doc )
|
|
tde_conditional_add_subdirectory( BUILD_KAMERA kamera )
|
|
tde_conditional_add_subdirectory( BUILD_KCOLOREDIT kcoloredit )
|
|
tde_conditional_add_subdirectory( BUILD_KDVI kdvi )
|
|
tde_conditional_add_subdirectory( BUILD_KFAX kfax )
|
|
tde_conditional_add_subdirectory( BUILD_KFAXVIEW kfaxview )
|
|
tde_conditional_add_subdirectory( BUILD_KFILE_PLUGINS kfile-plugins )
|
|
tde_conditional_add_subdirectory( BUILD_KGAMMA kgamma )
|
|
tde_conditional_add_subdirectory( BUILD_KGHOSTVIEW kghostview )
|
|
tde_conditional_add_subdirectory( BUILD_KICONEDIT kiconedit )
|
|
tde_conditional_add_subdirectory( BUILD_KMRML kmrml )
|
|
tde_conditional_add_subdirectory( BUILD_KOLOURPAINT kolourpaint )
|
|
tde_conditional_add_subdirectory( BUILD_KOOKA kooka )
|
|
tde_conditional_add_subdirectory( BUILD_KPDF kpdf )
|
|
tde_conditional_add_subdirectory( BUILD_KPOVMODELER kpovmodeler )
|
|
tde_conditional_add_subdirectory( BUILD_KRULER kruler )
|
|
tde_conditional_add_subdirectory( BUILD_KSNAPSHOT ksnapshot )
|
|
tde_conditional_add_subdirectory( BUILD_KSVG ksvg )
|
|
tde_conditional_add_subdirectory( BUILD_KUICKSHOW kuickshow )
|
|
tde_conditional_add_subdirectory( BUILD_KVIEW kview )
|
|
tde_conditional_add_subdirectory( BUILD_KVIEWSHELL kviewshell )
|
|
tde_conditional_add_subdirectory( BUILD_LIBKSCAN libkscan )
|
|
|
|
|
|
##### write configure files #####################
|
|
|
|
configure_file( config.h.cmake config.h @ONLY )
|