CMakeLists.txt 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. ###########################################################################
  2. #
  3. # Library: CTK
  4. #
  5. # Copyright (c) Kitware Inc.
  6. #
  7. # Licensed under the Apache License, Version 2.0 (the "License");
  8. # you may not use this file except in compliance with the License.
  9. # You may obtain a copy of the License at
  10. #
  11. # http://www.apache.org/licenses/LICENSE-2.0.txt
  12. #
  13. # Unless required by applicable law or agreed to in writing, software
  14. # distributed under the License is distributed on an "AS IS" BASIS,
  15. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. # See the License for the specific language governing permissions and
  17. # limitations under the License.
  18. #
  19. ###########################################################################
  20. CMAKE_MINIMUM_REQUIRED(VERSION 2.8.2)
  21. #-----------------------------------------------------------------------------
  22. # See http://cmake.org/cmake/help/cmake-2-8-docs.html#section_Policies for details
  23. #
  24. SET(project_policies
  25. CMP0001 # NEW: CMAKE_BACKWARDS_COMPATIBILITY should no longer be used.
  26. CMP0002 # NEW: Logical target names must be globally unique.
  27. CMP0003 # NEW: Libraries linked via full path no longer produce linker search paths.
  28. CMP0004 # NEW: Libraries linked may NOT have leading or trailing whitespace.
  29. CMP0005 # NEW: Preprocessor definition values are now escaped automatically.
  30. CMP0006 # NEW: Installing MACOSX_BUNDLE targets requires a BUNDLE DESTINATION.
  31. CMP0007 # NEW: List command no longer ignores empty elements.
  32. CMP0008 # NEW: Libraries linked by full-path must have a valid library file name.
  33. CMP0009 # NEW: FILE GLOB_RECURSE calls should not follow symlinks by default.
  34. CMP0010 # NEW: Bad variable reference syntax is an error.
  35. CMP0011 # NEW: Included scripts do automatic cmake_policy PUSH and POP.
  36. CMP0012 # NEW: if() recognizes numbers and boolean constants.
  37. CMP0013 # NEW: Duplicate binary directories are not allowed.
  38. CMP0014 # NEW: Input directories must have CMakeLists.txt
  39. )
  40. FOREACH(policy ${project_policies})
  41. IF(POLICY ${policy})
  42. CMAKE_POLICY(SET ${policy} NEW)
  43. ENDIF()
  44. ENDFOREACH()
  45. #-----------------------------------------------------------------------------
  46. if(APPLE)
  47. # Note: By setting CMAKE_OSX_* variables before any enable_language() or project() calls,
  48. # we ensure that the bitness will be properly detected.
  49. include(${CMAKE_SOURCE_DIR}/CMake/ctkBlockSetCMakeOSXVariables.cmake)
  50. endif()
  51. #-----------------------------------------------------------------------------
  52. PROJECT(CTK)
  53. #-----------------------------------------------------------------------------
  54. #-----------------------------------------------------------------------------
  55. # Library mode: SHARED (default) or STATIC
  56. #
  57. SET(CTK_LIBRARY_MODE "SHARED")
  58. OPTION(CTK_BUILD_SHARED_LIBS "Build CTK libraries as shared module." ON)
  59. MARK_AS_ADVANCED(CTK_BUILD_SHARED_LIBS)
  60. IF(NOT CTK_BUILD_SHARED_LIBS)
  61. SET(CTK_LIBRARY_MODE "STATIC")
  62. ENDIF()
  63. #-----------------------------------------------------------------------------
  64. # Set a default build type if none was specified
  65. #
  66. if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
  67. message(STATUS "Setting build type to 'Debug' as none was specified.")
  68. set(CMAKE_BUILD_TYPE Debug CACHE STRING "Choose the type of build." FORCE)
  69. # Set the possible values of build type for cmake-gui
  70. set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
  71. "MinSizeRel" "RelWithDebInfo")
  72. endif()
  73. #-----------------------------------------------------------------------------
  74. # Superbuild Option - Enabled by default
  75. #
  76. OPTION(CTK_SUPERBUILD "Build CTK and the projects it depends on via SuperBuild.cmake." ON)
  77. MARK_AS_ADVANCED(CTK_SUPERBUILD)
  78. #-----------------------------------------------------------------------------
  79. # Output directories.
  80. #
  81. FOREACH(type LIBRARY RUNTIME ARCHIVE)
  82. # Make sure the directory exists
  83. IF(DEFINED CTK_CMAKE_${type}_OUTPUT_DIRECTORY
  84. AND NOT EXISTS ${CTK_CMAKE_${type}_OUTPUT_DIRECTORY})
  85. MESSAGE(FATAL_ERROR "CTK_CMAKE_${type}_OUTPUT_DIRECTORY is set to a non-existing directory [${CTK_CMAKE_${type}_OUTPUT_DIRECTORY}]")
  86. ENDIF()
  87. IF(CTK_SUPERBUILD)
  88. SET(output_dir ${CTK_BINARY_DIR}/bin)
  89. IF(NOT DEFINED CTK_CMAKE_${type}_OUTPUT_DIRECTORY)
  90. SET(CTK_CMAKE_${type}_OUTPUT_DIRECTORY ${CTK_BINARY_DIR}/CTK-build/bin)
  91. ENDIF()
  92. ELSE()
  93. IF(NOT DEFINED CTK_CMAKE_${type}_OUTPUT_DIRECTORY)
  94. SET(output_dir ${CTK_BINARY_DIR}/bin)
  95. ELSE()
  96. SET(output_dir ${CTK_CMAKE_${type}_OUTPUT_DIRECTORY})
  97. ENDIF()
  98. ENDIF()
  99. SET(CMAKE_${type}_OUTPUT_DIRECTORY ${output_dir} CACHE INTERNAL "Single output directory for building all libraries.")
  100. ENDFOREACH()
  101. #-----------------------------------------------------------------------------
  102. # CTK version number. An even minor number corresponds to releases.
  103. #
  104. SET(CTK_MAJOR_VERSION 0)
  105. SET(CTK_MINOR_VERSION 1)
  106. SET(CTK_BUILD_VERSION 0)
  107. SET(CTK_VERSION
  108. "${CTK_MAJOR_VERSION}.${CTK_MINOR_VERSION}.${CTK_BUILD_VERSION}")
  109. # Append the library version information to the library target
  110. # properties. A parent project may set its own properties and/or may
  111. # block this.
  112. IF(NOT CTK_NO_LIBRARY_VERSION)
  113. SET(CTK_LIBRARY_PROPERTIES ${CTK_LIBRARY_PROPERTIES}
  114. VERSION "${CTK_VERSION}"
  115. SOVERSION "${CTK_MAJOR_VERSION}.${CTK_MINOR_VERSION}"
  116. )
  117. ENDIF()
  118. #-----------------------------------------------------------------------------
  119. # Install directories, used for install rules.
  120. #
  121. IF(NOT CTK_INSTALL_BIN_DIR)
  122. SET(CTK_INSTALL_BIN_DIR "bin")
  123. ENDIF()
  124. IF(NOT CTK_INSTALL_LIB_DIR)
  125. SET(CTK_INSTALL_LIB_DIR "lib/ctk-${CTK_MAJOR_VERSION}.${CTK_MINOR_VERSION}")
  126. ENDIF()
  127. IF(NOT CTK_INSTALL_INCLUDE_DIR)
  128. SET(CTK_INSTALL_INCLUDE_DIR "include/ctk-${CTK_MAJOR_VERSION}.${CTK_MINOR_VERSION}")
  129. ENDIF()
  130. IF(NOT CTK_INSTALL_DOC_DIR)
  131. SET(CTK_INSTALL_DOC_DIR "doc")
  132. ENDIF()
  133. #-----------------------------------------------------------------------------
  134. # Update CMake module path
  135. # Note: FindXXX.cmake script specific to utility should be copied into Utilities/CMake
  136. #
  137. SET(CMAKE_MODULE_PATH
  138. "${CMAKE_CURRENT_SOURCE_DIR}/Utilities/CMake"
  139. "${CMAKE_CURRENT_SOURCE_DIR}/CMake"
  140. ${CMAKE_MODULE_PATH})
  141. #-----------------------------------------------------------------------------
  142. # Clear CTK_BASE_INCLUDE_DIRS, CTK_BASE_LIBRARIES and CTK_WRAPPED_LIBRARIES_PYTHONQT
  143. #
  144. SET(CTK_BASE_LIBRARIES CACHE INTERNAL "CTK base libraries" FORCE)
  145. SET(CTK_BASE_INCLUDE_DIRS CACHE INTERNAL "CTK includes" FORCE)
  146. SET(CTK_WRAPPED_LIBRARIES_PYTHONQT CACHE INTERNAL "CTK libraries wrapped using PythonQt" FORCE)
  147. # Variable use in CTKConfig.cmake.in
  148. SET(CTK_LIBRARIES CACHE INTERNAL "CTK libraries" FORCE)
  149. SET(CTK_PLUGIN_LIBRARIES CACHE INTERNAL "CTK plugins" FORCE)
  150. # Used by CTKGenerateCTKConfig.cmake and also used to reference script from other scripts
  151. SET(CTK_CMAKE_DIR ${CTK_SOURCE_DIR}/CMake)
  152. SET(CTK_CMAKE_UTILITIES_DIR ${CTK_SOURCE_DIR}/Utilities/CMake)
  153. #-----------------------------------------------------------------------------
  154. # CMake Function(s) and Macro(s)
  155. #
  156. INCLUDE(CMake/ctkMacroParseArguments.cmake)
  157. INCLUDE(CMake/ctkMacroSetPaths.cmake)
  158. INCLUDE(CMake/ctkMacroListFilter.cmake)
  159. INCLUDE(CMake/ctkMacroBuildLib.cmake)
  160. INCLUDE(CMake/ctkMacroBuildPlugin.cmake)
  161. INCLUDE(CMake/ctkMacroBuildApp.cmake)
  162. INCLUDE(CMake/ctkMacroCompilePythonScript.cmake)
  163. INCLUDE(CMake/ctkMacroWrapPythonQt.cmake)
  164. INCLUDE(CMake/ctkMacroSetupQt.cmake)
  165. INCLUDE(CMake/ctkMacroTargetLibraries.cmake) # Import multiple macros
  166. INCLUDE(CMake/ctkFunctionExtractOptionNameAndValue.cmake)
  167. INCLUDE(CMake/ctkMacroValidateBuildOptions.cmake)
  168. INCLUDE(CMake/ctkMacroAddCtkLibraryOptions.cmake)
  169. INCLUDE(CMake/ctkFunctionGenerateDGraphInput.cmake)
  170. INCLUDE(CMake/ctkFunctionGenerateProjectXml.cmake)
  171. INCLUDE(CMake/ctkFunctionGeneratePluginManifest.cmake)
  172. INCLUDE(CMake/ctkMacroGeneratePluginResourceFile.cmake)
  173. INCLUDE(CMake/ctkFunctionCheckCompilerFlags.cmake)
  174. INCLUDE(CMake/ctkFunctionGetIncludeDirs.cmake)
  175. INCLUDE(CMake/ctkFunctionGetLibraryDirs.cmake)
  176. INCLUDE(CMake/ctkFunctionGetGccVersion.cmake)
  177. #-----------------------------------------------------------------------------
  178. # Qt Designer Plugins
  179. OPTION(BUILD_QTDESIGNER_PLUGINS "Build Qt Designer plugins" ON)
  180. IF(BUILD_QTDESIGNER_PLUGINS)
  181. INCLUDE(CMake/ctkMacroBuildQtDesignerPlugin.cmake)
  182. ENDIF()
  183. #-----------------------------------------------------------------------------
  184. # Testing
  185. #
  186. OPTION(BUILD_TESTING "Test the project" ON)
  187. IF(BUILD_TESTING)
  188. ENABLE_TESTING()
  189. INCLUDE(CTest)
  190. SET(CPP_TEST_PATH ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
  191. MARK_AS_ADVANCED(TCL_TCLSH DART_ROOT)
  192. # Setup file for setting custom ctest vars
  193. CONFIGURE_FILE(
  194. CMake/CTestCustom.cmake.in
  195. ${CMAKE_CURRENT_BINARY_DIR}/CTestCustom.cmake
  196. @ONLY
  197. )
  198. # Configuration for the CMake-generated test driver
  199. SET(CMAKE_TESTDRIVER_EXTRA_INCLUDES "#include <stdexcept>")
  200. SET(CMAKE_TESTDRIVER_BEFORE_TESTMAIN "
  201. try
  202. {")
  203. SET(CMAKE_TESTDRIVER_AFTER_TESTMAIN " }
  204. catch( std::exception & excp )
  205. {
  206. fprintf(stderr,\"%s\\n\",excp.what());
  207. return EXIT_FAILURE;
  208. }
  209. catch( ... )
  210. {
  211. printf(\"Exception caught in the test driver\\n\");
  212. return EXIT_FAILURE;
  213. }
  214. ")
  215. ENDIF()
  216. #-----------------------------------------------------------------------------
  217. # Coverage
  218. #
  219. OPTION(WITH_COVERAGE "Enable/Disable coverage" OFF)
  220. #-----------------------------------------------------------------------------
  221. # Documentation
  222. #
  223. OPTION(DOCUMENTATION_TARGET_IN_ALL "Include the custom target for building documentation in 'all'" OFF)
  224. MARK_AS_ADVANCED(DOCUMENTATION_TARGET_IN_ALL)
  225. SET(DOCUMENTATION_ARCHIVES_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
  226. CACHE PATH "Where documentation archives should be stored")
  227. MARK_AS_ADVANCED(DOCUMENTATION_ARCHIVES_OUTPUT_DIRECTORY)
  228. #-----------------------------------------------------------------------------
  229. # Additional CXX/C Flags
  230. #
  231. SET(ADDITIONAL_C_FLAGS "" CACHE STRING "Additional C Flags")
  232. MARK_AS_ADVANCED(ADDITIONAL_C_FLAGS)
  233. SET(ADDITIONAL_CXX_FLAGS "" CACHE STRING "Additional CXX Flags")
  234. MARK_AS_ADVANCED(ADDITIONAL_CXX_FLAGS)
  235. #-----------------------------------------------------------------------------
  236. # Set symbol visibility Flags
  237. #
  238. # MinGW does not export all symbols automatically, so no need to set flags
  239. IF(CMAKE_COMPILER_IS_GNUCXX AND NOT MINGW)
  240. SET(VISIBILITY_CXX_FLAGS "-fvisibility=hidden -fvisibility-inlines-hidden")
  241. ENDIF()
  242. #-----------------------------------------------------------------------------
  243. # Set coverage Flags
  244. #
  245. IF(WITH_COVERAGE)
  246. IF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
  247. SET(coverage_flags "-g -fprofile-arcs -ftest-coverage -O0 -DNDEBUG")
  248. SET(COVERAGE_CXX_FLAGS ${coverage_flags})
  249. SET(COVERAGE_C_FLAGS ${coverage_flags})
  250. ENDIF()
  251. ENDIF()
  252. #-----------------------------------------------------------------------------
  253. # CTK C/CXX Flags
  254. #
  255. SET(CTK_C_FLAGS "${CMAKE_C_FLAGS_INIT} ${COVERAGE_C_FLAGS} ${ADDITIONAL_C_FLAGS}")
  256. SET(CTK_CXX_FLAGS "${CMAKE_CXX_FLAGS_INIT} ${VISIBILITY_CXX_FLAGS} ${COVERAGE_CXX_FLAGS} ${ADDITIONAL_CXX_FLAGS}")
  257. IF(CMAKE_COMPILER_IS_GNUCXX)
  258. SET(cflags "-Wall -Wextra -Wpointer-arith -Winvalid-pch -Wcast-align -Wwrite-strings -D_FORTIFY_SOURCE=2")
  259. ctkFunctionCheckCompilerFlags("-fdiagnostics-show-option" cflags)
  260. ctkFunctionCheckCompilerFlags("-Wl,--no-undefined" cflags)
  261. ctkFunctionGetGccVersion(${CMAKE_CXX_COMPILER} GCC_VERSION)
  262. # With older version of gcc supporting the flag -fstack-protector-all, an extra dependency to libssp.so
  263. # is introduced. If gcc is smaller than 4.4.0 and the build type is Release let's not include the flag.
  264. # Doing so should allow to build package made for distribution using older linux distro.
  265. IF(${GCC_VERSION} VERSION_GREATER "4.4.0" OR (CMAKE_BUILD_TYPE STREQUAL "Debug" AND ${GCC_VERSION} VERSION_LESS "4.4.0"))
  266. ctkFunctionCheckCompilerFlags("-fstack-protector-all" cflags)
  267. ENDIF()
  268. IF(MINGW)
  269. # suppress warnings about auto imported symbols
  270. SET(CTK_CXX_FLAGS "-Wl,--enable-auto-import ${CTK_CXX_FLAGS}")
  271. ENDIF()
  272. SET(CTK_C_FLAGS "${cflags} ${CTK_C_FLAGS}")
  273. SET(CTK_CXX_FLAGS "${cflags} -Woverloaded-virtual -Wold-style-cast -Wstrict-null-sentinel -Wsign-promo ${CTK_CXX_FLAGS}")
  274. ENDIF()
  275. IF(MSVC)
  276. SET(msvc_suppressed_warnings
  277. "/wd4290" # C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
  278. )
  279. SET(CTK_CXX_FLAGS "${CTK_CXX_FLAGS} ${msvc_suppressed_warnings}")
  280. ENDIF()
  281. #-----------------------------------------------------------------------------
  282. # QT
  283. #
  284. ctkMacroSetupQt()
  285. # Update CTK_BASE_LIBRARIES with QT libraries
  286. IF(QT4_FOUND)
  287. SET(CTK_BASE_LIBRARIES ${CTK_BASE_LIBRARIES} ${QT_LIBRARIES} CACHE INTERNAL "CTK base libraries" FORCE)
  288. ENDIF()
  289. #-----------------------------------------------------------------------------
  290. # CTK Libraries - Use ON or OFF to indicate if the library should be built by default
  291. #
  292. SET(CTK_LIBS
  293. Core:ON
  294. PluginFramework:ON
  295. Widgets:OFF
  296. DICOM/Core:OFF
  297. DICOM/Widgets:OFF
  298. ImageProcessing/ITK/Core:OFF
  299. #Messaging/Core:OFF # MessagingCore library need some love :) - Let's disable it for now :(
  300. #ModuleDescription:OFF # ModuleDescription library need some love :) - Let's disable it for now :(
  301. Scripting/Python/Core:OFF
  302. Scripting/Python/Widgets:OFF
  303. Visualization/VTK/Core:OFF
  304. Visualization/VTK/Widgets:OFF
  305. #Visualization/XIP:OFF # XIP library need some love :) - Let's disable it for now :(
  306. )
  307. #-----------------------------------------------------------------------------
  308. # CTK Plugins - Use ON or OFF to indicate if the plugin should be built by default
  309. #
  310. SET(CTK_PLUGINS
  311. # Optional plug-ins implementings interfaces in PluginFramework/service/
  312. org.commontk.eventbus:OFF
  313. org.commontk.configadmin:OFF
  314. org.commontk.eventadmin:OFF
  315. org.commontk.log:OFF
  316. org.commontk.log4qt:OFF
  317. org.commontk.metatype:OFF
  318. # Plug-ins related to DICOM WG23 (Application Hosting)
  319. org.commontk.dah.core:OFF
  320. org.commontk.dah.app:OFF
  321. org.commontk.dah.host:OFF
  322. org.commontk.dah.exampleapp:OFF
  323. org.commontk.dah.examplehost:OFF
  324. # Misc
  325. org.commontk.plugingenerator.core:OFF
  326. org.commontk.plugingenerator.ui:OFF
  327. org.commontk.qtmobility.service:OFF
  328. org.commontk.slicermodule:OFF
  329. )
  330. #-----------------------------------------------------------------------------
  331. # CTK Applications - Use ON or OFF to indicate if the application should be built by default
  332. #
  333. SET(CTK_APPLICATIONS
  334. ctkCLIPluginExplorer:OFF
  335. ctkDICOM:OFF
  336. ctkDICOMIndexer:OFF
  337. ctkDICOMDemoSCU:OFF
  338. ctkDICOMQuery:OFF
  339. ctkDICOMRetrieve:OFF
  340. ctkDICOMQueryRetrieve:OFF
  341. ctkExampleHost:OFF
  342. ctkExampleHostedApp:OFF
  343. ctkPluginBrowser:OFF
  344. ctkPluginGenerator:OFF
  345. ctkDICOMObjectViewer:OFF
  346. ctkSimplePythonShell:OFF
  347. )
  348. #-----------------------------------------------------------------------------
  349. # To make options show up in both CTK-SuperBuild and CTK regular build, let's add them
  350. # before the SuperBuild script is included
  351. #
  352. # Let's mark as advanced some default properties
  353. MARK_AS_ADVANCED(CMAKE_INSTALL_PREFIX)
  354. MARK_AS_ADVANCED(DART_TESTING_TIMEOUT)
  355. # KWStyle
  356. OPTION(CTK_USE_KWSTYLE "Enable sourcecode-based style tests." OFF)
  357. #MARK_AS_ADVANCED(CTK_USE_KWSTYLE)
  358. #---------------------------------------------------------------------------
  359. # Will contain a list of sub-directory without option ON or OFF
  360. #
  361. SET(CTK_LIBS_SUBDIRS )
  362. SET(CTK_PLUGINS_SUBDIRS )
  363. SET(CTK_APPLICATIONS_SUBDIRS )
  364. #-----------------------------------------------------------------------------
  365. # Build options associated with CTK libraries
  366. #
  367. # The following FOREACH loops are used to:
  368. # 1) Add build options associated with either libraries, plugins and applications
  369. # 2) Update either CTK_LIBS_SUBDIRS, CTK_PLUGINS_SUBDIRS or CTK_APPS_SUBDIRS variables
  370. #
  371. # For CTK libraries, if the file Libs/<DIR>/<LIBNAME>/ctk_library_options.cmake exists,
  372. # in addition to 'CTK_LIB_<DIR>/<LIBNAME>' option, the following ones
  373. # will also be available in CMake configure menu:
  374. # CTK_LIB_<DIR>/<LIBNAME>_OPT1 (set to OFF)
  375. # CTK_LIB_<DIR>/<LIBNAME>_OPT2 (set to ON)
  376. #
  377. # The file Libs/<DIR>/<LIBNAME>/ctk_library_options.cmake should look like:
  378. #
  379. # SET(ctk_library_options
  380. # OPT1:OFF
  381. # OPT2:ON
  382. # )
  383. # Build options associated with CTK libraries
  384. SET(ctk_lib_options_list) # This list will be updated in ctkFunctionExtractOptionNameAndValue
  385. FOREACH(lib ${CTK_LIBS})
  386. ctkFunctionExtractOptionNameAndValue(${lib} lib_name lib_value)
  387. OPTION(CTK_LIB_${lib_name} "Enable ${lib_name} Library." ${lib_value})
  388. IF(CTK_LIB_${lib_name})
  389. ctkMacroAddCtkLibraryOptions(${lib_name})
  390. ENDIF()
  391. LIST(APPEND CTK_LIBS_SUBDIRS "${lib_name}")
  392. ENDFOREACH()
  393. # Build options associated with CTK plugins
  394. FOREACH(plugin ${CTK_PLUGINS})
  395. ctkFunctionExtractOptionNameAndValue(${plugin} plugin_name plugin_value)
  396. OPTION(CTK_PLUGIN_${plugin_name} "Build ${plugin_name} Plugin." ${plugin_value})
  397. LIST(APPEND CTK_PLUGINS_SUBDIRS "${plugin_name}")
  398. ENDFOREACH()
  399. # Build options associated with CTK applications
  400. FOREACH(app ${CTK_APPLICATIONS})
  401. ctkFunctionExtractOptionNameAndValue(${app} app_name app_value)
  402. OPTION(CTK_APP_${app_name} "Build ${app_name} Application." ${app_value})
  403. LIST(APPEND CTK_APPLICATIONS_SUBDIRS "${app_name}")
  404. ENDFOREACH()
  405. #-----------------------------------------------------------------------------
  406. # Generate target_directories list - List of directory corresponding to the different
  407. # libraries, plugins and applications associated with the corresponding option name.
  408. #
  409. # Create list of directories corresponding to the enabled targets
  410. SET(target_directories)
  411. FOREACH(lib ${CTK_LIBS_SUBDIRS})
  412. SET(option_name CTK_LIB_${lib})
  413. LIST(APPEND target_directories "${CMAKE_CURRENT_SOURCE_DIR}/Libs/${lib}^^${option_name}")
  414. ENDFOREACH()
  415. FOREACH(plugin ${CTK_PLUGINS_SUBDIRS})
  416. SET(option_name CTK_PLUGIN_${plugin})
  417. LIST(APPEND target_directories "${CMAKE_CURRENT_SOURCE_DIR}/Plugins/${plugin}^^${option_name}")
  418. ENDFOREACH()
  419. FOREACH(app ${CTK_APPLICATIONS_SUBDIRS})
  420. SET(option_name CTK_APP_${app})
  421. LIST(APPEND target_directories "${CMAKE_CURRENT_SOURCE_DIR}/Applications/${app}^^${option_name}")
  422. ENDFOREACH()
  423. #MESSAGE(STATUS target_directories:${target_directories})
  424. #-----------------------------------------------------------------------------
  425. # Compile DGraph - An application allowing to check for cycle in DAG and also obtain the
  426. # topological order.
  427. TRY_COMPILE(RESULT_VAR ${CTK_BINARY_DIR}/Utilities/DGraph ${CTK_SOURCE_DIR}/Utilities/DGraph
  428. DGraph
  429. CMAKE_FLAGS
  430. -DQT_QMAKE_EXECUTABLE:FILE=${QT_QMAKE_EXECUTABLE}
  431. -DCMAKE_OSX_ARCHITECTURES:STRING=${CMAKE_OSX_ARCHITECTURES}
  432. -DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=${CMAKE_OSX_DEPLOYMENT_TARGET}
  433. -DCMAKE_OSX_SYSROOT:STRING=${CMAKE_OSX_SYSROOT}
  434. -DCMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
  435. OUTPUT_VARIABLE output)
  436. IF(NOT RESULT_VAR)
  437. MESSAGE(FATAL_ERROR "Failed to compile DGraph application.\n${output}")
  438. ENDIF()
  439. FIND_PROGRAM(DGraph_EXECUTABLE DGraph
  440. "${CTK_BINARY_DIR}/Utilities/DGraph/"
  441. "${CTK_BINARY_DIR}/Utilities/DGraph/bin/"
  442. "${CTK_BINARY_DIR}/Utilities/DGraph/Debug/"
  443. "${CTK_BINARY_DIR}/Utilities/DGraph/Release/")
  444. MARK_AS_ADVANCED(DGraph_EXECUTABLE)
  445. #-----------------------------------------------------------------------------
  446. # Let's make sure the enabled/disabled libraries, plugins or applications are coherent
  447. #
  448. ctkFunctionGenerateDGraphInput(${CTK_BINARY_DIR} "${target_directories}")
  449. ctkFunctionGenerateDGraphInput(${CTK_BINARY_DIR} "${target_directories}" WITH_EXTERNALS)
  450. ctkMacroValidateBuildOptions("${CTK_BINARY_DIR}" "${DGraph_EXECUTABLE}" "${target_directories}")
  451. #-----------------------------------------------------------------------------
  452. # CTK Python wrapping - Propose the option only if CTK_LIB_Scriping/Python/Core is ON
  453. IF(CTK_LIB_Scripting/Python/Core)
  454. find_package(PythonInterp)
  455. IF(NOT PYTHONINTERP_FOUND)
  456. MESSAGE(SEND_ERROR "PYTHON_EXECUTABLE variable should be set to build CTK_LIB_Scripting/Python")
  457. ENDIF()
  458. FIND_PACKAGE(PythonLibs)
  459. IF(NOT PYTHONLIBS_FOUND)
  460. MESSAGE(FATAL_ERROR "PYTHON_LIBRARIES and PYTHON_INCLUDE_DIRS should be set to build CTK_LIB_Scripting/Python")
  461. ENDIF()
  462. OPTION(CTK_WRAP_PYTHONQT_FULL "Experimental - Wrap CTK classes using Qt meta-object system into Python language" OFF)
  463. MARK_AS_ADVANCED(CTK_WRAP_PYTHONQT_FULL)
  464. OPTION(CTK_WRAP_PYTHONQT_LIGHT "Wrap CTK classes using Qt meta-object system into Python language" OFF)
  465. IF(CTK_WRAP_PYTHONQT_FULL AND CTK_WRAP_PYTHONQT_LIGHT)
  466. MESSAGE(SEND_ERROR "CTK_WRAP_PYTHONQT_{LIGHT,FULL} options are mutually exclusive. Please enable only one !")
  467. ENDIF()
  468. ELSE()
  469. # Note that an unset boolean variable is considered to be False
  470. UNSET(CTK_WRAP_PYTHONQT_FULL CACHE)
  471. UNSET(CTK_WRAP_PYTHONQT_LIGHT CACHE)
  472. ENDIF()
  473. #-----------------------------------------------------------------------------
  474. # DGraph
  475. #
  476. # Generate DGraph input file expected by DGraph
  477. ctkFunctionGenerateDGraphInput(${CTK_BINARY_DIR} "${target_directories}" WITH_OPTION)
  478. # Obtain list of target ordered topologically
  479. ctkMacroSetPaths("${QT_INSTALLED_LIBRARY_DIR}")
  480. EXECUTE_PROCESS(
  481. COMMAND "${DGraph_EXECUTABLE}" "${CTK_BINARY_DIR}/DGraphInput.txt"
  482. WORKING_DIRECTORY ${CTK_BINARY_DIR}
  483. RESULT_VARIABLE RESULT_VAR
  484. OUTPUT_VARIABLE CTEST_PROJECT_SUBPROJECTS_OUTPUT
  485. ERROR_VARIABLE error
  486. OUTPUT_STRIP_TRAILING_WHITESPACE
  487. )
  488. IF(RESULT_VAR)
  489. MESSAGE(FATAL_ERROR "Failed to obtain list of target ordered topologically.\n${RESULT_VAR}\n${CTK_BINARY_DIR}\n${error}")
  490. ENDIF()
  491. # Convert 'CTEST_PROJECT_SUBPROJECTS_OUTPUT' to a list
  492. STRING(REPLACE " " "\\;" CTEST_PROJECT_SUBPROJECTS "${CTEST_PROJECT_SUBPROJECTS_OUTPUT}")
  493. SET(CTEST_PROJECT_SUBPROJECTS ${CTEST_PROJECT_SUBPROJECTS})
  494. # If the list of subproject is empty, let's at least build CTKCore
  495. LIST(LENGTH CTEST_PROJECT_SUBPROJECTS subproject_count)
  496. IF (subproject_count EQUAL 0)
  497. SET(CTEST_PROJECT_SUBPROJECTS CTKCore)
  498. ENDIF()
  499. # Configure CTestConfigSubProject.cmake used that could be used by CTest scripts
  500. CONFIGURE_FILE(${CTK_SOURCE_DIR}/CTestConfigSubProject.cmake.in
  501. ${CTK_BINARY_DIR}/CTestConfigSubProject.cmake)
  502. #-----------------------------------------------------------------------------
  503. # Project.xml
  504. #
  505. # Generate Project.xml file expected by the CTest driver script
  506. ctkFunctionGenerateProjectXml(${CTK_BINARY_DIR} ${PROJECT_NAME} "${target_directories}" ${CTK_SUPERBUILD})
  507. #-----------------------------------------------------------------------------
  508. # Superbuild script
  509. #
  510. IF(CTK_SUPERBUILD)
  511. INCLUDE("${CMAKE_CURRENT_SOURCE_DIR}/SuperBuild.cmake")
  512. RETURN()
  513. ENDIF()
  514. #-----------------------------------------------------------------------------
  515. # Expand variables containing include and library directories for external projects
  516. # This relies on the variable EXTERNAL_TARGETS set in ctkMacroValidateBuildOptions
  517. FOREACH(_external_target ${EXTERNAL_TARGETS})
  518. IF(${_external_target}_FIND_PACKAGE_CMD)
  519. #MESSAGE("Calling FIND_PACKAGE(${${_external_target}_FIND_PACKAGE_CMD})")
  520. FIND_PACKAGE(${${_external_target}_FIND_PACKAGE_CMD} REQUIRED)
  521. ENDIF()
  522. ENDFOREACH()
  523. FOREACH(_external_target ${EXTERNAL_TARGETS})
  524. IF(${_external_target}_INCLUDE_DIRS)
  525. STRING(REPLACE "^" ";" _include_variable_list "${${_external_target}_INCLUDE_DIRS}")
  526. IF(_include_variable_list)
  527. #MESSAGE("[${_external_target}] Resolving include variables: ${${_external_target}_INCLUDE_DIRS}")
  528. SET(${_external_target}_INCLUDE_DIRS "")
  529. FOREACH(_include_variable ${_include_variable_list})
  530. #MESSAGE("[${_external_target}] Appending ${${_include_variable}}")
  531. IF(${_include_variable})
  532. LIST(APPEND ${_external_target}_INCLUDE_DIRS ${${_include_variable}})
  533. ELSE()
  534. LIST(APPEND ${_external_target}_INCLUDE_DIRS ${_include_variable})
  535. ENDIF()
  536. #MESSAGE("[${_external_target}] New dirs: ${${_external_target}_INCLUDE_DIRS}")
  537. ENDFOREACH()
  538. #MESSAGE("[${_external_target}] Appended dirs: ${${_external_target}_INCLUDE_DIRS}")
  539. ENDIF()
  540. ENDIF()
  541. IF(${_external_target}_LIBRARY_DIRS)
  542. STRING(REPLACE "^" ";" _library_variable_list "${${_external_target}_LIBRARY_DIRS}")
  543. IF(_library_variable_list)
  544. #MESSAGE("[${_external_target}] Resolving library variables: ${${_external_target}_LIBRARY_DIRS}")
  545. SET(${_external_target}_LIBRARY_DIRS "")
  546. FOREACH(_library_variable ${_library_variable_list})
  547. #MESSAGE("[${_external_target}] Appending ${${_library_variable}}")
  548. IF(${_library_variable})
  549. LIST(APPEND ${_external_target}_LIBRARY_DIRS ${${_library_variable}})
  550. ELSE()
  551. LIST(APPEND ${_external_target}_LIBRARY_DIRS ${_library_variable})
  552. ENDIF()
  553. #MESSAGE("[${_external_target}] New dirs: ${${_external_target}_LIBRARY_DIRS}")
  554. ENDFOREACH()
  555. #MESSAGE("[${_external_target}] Appended dirs: ${${_external_target}_LIBRARY_DIRS}")
  556. ENDIF()
  557. ENDIF()
  558. ENDFOREACH()
  559. # Since PYTHONQT_USE_VTK library option can be enabled independently of
  560. # Visualization/VTK/Core, let's make sure VTK has been properly discovered
  561. IF(CTK_LIB_Scripting/Python/Core_PYTHONQT_USE_VTK)
  562. FIND_PACKAGE(VTK REQUIRED)
  563. ENDIF()
  564. SET(CTK_WRAP_PYTHONQT_USE_VTK ${CTK_LIB_Scripting/Python/Core_PYTHONQT_USE_VTK})
  565. #-----------------------------------------------------------------------------
  566. # CTK_SUPERBUILD_BINARY_DIR
  567. # If CTK_SUPERBUILD_BINARY_DIR isn't defined, it means CTK is *NOT* build using Superbuild.
  568. # In that specific case, CTK_SUPERBUILD_BINARY_DIR should default to CTK_BINARY_DIR
  569. IF(NOT DEFINED CTK_SUPERBUILD_BINARY_DIR)
  570. SET(CTK_SUPERBUILD_BINARY_DIR ${CTK_BINARY_DIR})
  571. ENDIF()
  572. #-----------------------------------------------------------------------------
  573. # Configure files with settings
  574. #
  575. CONFIGURE_FILE(${CTK_SOURCE_DIR}/UseCTK.cmake.in
  576. ${CTK_SUPERBUILD_BINARY_DIR}/UseCTK.cmake COPYONLY IMMEDIATE)
  577. #-----------------------------------------------------------------------------
  578. # Set C/CXX Flags
  579. #
  580. SET(CMAKE_CXX_FLAGS ${CTK_CXX_FLAGS} CACHE STRING "CMake C Flags" FORCE)
  581. SET(CMAKE_C_FLAGS ${CTK_C_FLAGS} CACHE STRING "CMake CXX Flags" FORCE)
  582. #-----------------------------------------------------------------------------
  583. # Set the header template which defines custom export/import macros
  584. # for shared libraries
  585. #
  586. SET(CTK_EXPORT_HEADER_TEMPLATE "${CTK_SOURCE_DIR}/Libs/ctkExport.h.in")
  587. #-----------------------------------------------------------------------------
  588. # Add CTK library subdirectories
  589. #
  590. FOREACH(lib ${CTK_LIBS_SUBDIRS})
  591. IF (CTK_LIB_${lib})
  592. ADD_SUBDIRECTORY(Libs/${lib})
  593. ENDIF()
  594. ENDFOREACH()
  595. #-----------------------------------------------------------------------------
  596. # Add CTK plugin subdirectories
  597. #
  598. FOREACH(plugin ${CTK_PLUGINS_SUBDIRS})
  599. IF(CTK_PLUGIN_${plugin})
  600. ADD_SUBDIRECTORY(Plugins/${plugin})
  601. ENDIF()
  602. ENDFOREACH()
  603. #-----------------------------------------------------------------------------
  604. # Add CTK application subdirectories
  605. #
  606. FOREACH(app ${CTK_APPLICATIONS_SUBDIRS})
  607. IF (CTK_APP_${app})
  608. ADD_SUBDIRECTORY(Applications/${app})
  609. ENDIF()
  610. ENDFOREACH()
  611. IF(BUILD_TESTING)
  612. ADD_SUBDIRECTORY(Applications/Testing)
  613. ENDIF(BUILD_TESTING)
  614. #-----------------------------------------------------------------------------
  615. # Add general purpose subdirectories
  616. #
  617. #ADD_SUBDIRECTORY(Testing)
  618. #ADD_SUBDIRECTORY(Examples)
  619. #-----------------------------------------------------------------------------
  620. # Style Checking configuration
  621. #
  622. INCLUDE(Utilities/KWStyle/KWStyle.cmake)
  623. #---------------------------------------------------------------------------
  624. # Documentation
  625. #
  626. ADD_SUBDIRECTORY( Documentation )
  627. #-----------------------------------------------------------------------------
  628. # The commands in this directory are intended to be executed as
  629. # the end of the whole configuration process, as a "last step".
  630. # This directory is typically the last SUBDIRS in the main CMakeLists.txt.
  631. ADD_SUBDIRECTORY(Utilities/LastConfigureStep)