| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 | 
							- ###########################################################################
 
- #
 
- #  Library:   CTK
 
- # 
 
- #  Copyright (c) 2010  Kitware Inc.
 
- #
 
- #  Licensed under the Apache License, Version 2.0 (the "License");
 
- #  you may not use this file except in compliance with the License.
 
- #  You may obtain a copy of the License at
 
- #
 
- #      http://www.commontk.org/LICENSE
 
- #
 
- #  Unless required by applicable law or agreed to in writing, software
 
- #  distributed under the License is distributed on an "AS IS" BASIS,
 
- #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
- #  See the License for the specific language governing permissions and
 
- #  limitations under the License.
 
- # 
 
- ###########################################################################
 
- # 
 
- # CTK_KWSTYLE_EXECUTABLE
 
- # DCMTK_DIR
 
- # QT_QMAKE_EXECUTABLE
 
- # VTK_DIR
 
- # PYTHONQT_INSTALL_DIR
 
- # PYTHON_LIBRARY
 
- # PYTHON_INCLUDE_DIR
 
- #
 
- #-----------------------------------------------------------------------------
 
- # Declare CTK_EXTERNAL_LIBRARY_DIRS variable - This variable stores
 
- # the library output directory associated with the different external project
 
- # It's then used in Utilities/LastConfigureStep/CTKGenerateCTKConfig.cmake to 
 
- # configure CTKConfig.cmake.in
 
- # This variable would then be exposed to project building against CTK
 
- SET(CTK_EXTERNAL_LIBRARY_DIRS)
 
- #-----------------------------------------------------------------------------
 
- # Make sure ${CTK_BINARY_DIR}/CTK-build/bin exists
 
- # May be used by some external project to install libs (e.g QtMobility)
 
- IF(NOT EXISTS ${CTK_BINARY_DIR}/CTK-build/bin)
 
-   FILE(MAKE_DIRECTORY ${CTK_BINARY_DIR}/CTK-build/bin)
 
- ENDIF()
 
- #-----------------------------------------------------------------------------
 
- # Git protocole option
 
- #
 
- option(CTK_USE_GIT_PROTOCOL "If behind a firewall turn this OFF to use http instead." ON)
 
- set(git_protocol "git")
 
- if(NOT CTK_USE_GIT_PROTOCOL)
 
-   set(git_protocol "http")
 
- endif()
 
- #-----------------------------------------------------------------------------
 
- # Enable and setup External project global properties
 
- #
 
- INCLUDE(ExternalProject)
 
- SET(ep_base "${CMAKE_BINARY_DIR}/CMakeExternals")
 
- SET_PROPERTY(DIRECTORY PROPERTY EP_BASE ${ep_base})
 
- SET(ep_install_dir ${ep_base}/Install)
 
- SET(ep_build_dir ${ep_base}/Build)
 
- SET(ep_source_dir ${ep_base}/Source)
 
- #SET(ep_parallelism_level)
 
- SET(ep_build_shared_libs ON)
 
- SET(ep_build_testing OFF)
 
- SET(ep_common_args
 
-   -DCMAKE_INSTALL_PREFIX:PATH=${ep_install_dir}
 
-   -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}
 
-   -DBUILD_TESTING:BOOL=${ep_build_testing}
 
-   )
 
- # Compute -G arg for configuring external projects with the same CMake generator:
 
- IF(CMAKE_EXTRA_GENERATOR)
 
-   SET(gen "${CMAKE_EXTRA_GENERATOR} - ${CMAKE_GENERATOR}")
 
- ELSE()
 
-   SET(gen "${CMAKE_GENERATOR}")
 
- ENDIF()
 
- # Use this value where semi-colons are needed in ep_add args:
 
- set(sep "^^")
 
- #-----------------------------------------------------------------------------
 
- # Collect CTK library target dependencies
 
- #
 
- ctkMacroCollectAllTargetLibraries("${CTK_LIBS_SUBDIRS}" "Libs" ALL_TARGET_LIBRARIES)
 
- ctkMacroCollectAllTargetLibraries("${CTK_PLUGINS_SUBDIRS}" "Plugins" ALL_TARGET_LIBRARIES)
 
- ctkMacroCollectAllTargetLibraries("${CTK_APPLICATIONS_SUBDIRS}" "Applications" ALL_TARGET_LIBRARIES)
 
- #MESSAGE(STATUS ALL_TARGET_LIBRARIES:${ALL_TARGET_LIBRARIES})
 
- #-----------------------------------------------------------------------------
 
- # Initialize NON_CTK_DEPENDENCIES variable
 
- #
 
- # Using the variable ALL_TARGET_LIBRARIES initialized above with the help
 
- # of the macro ctkMacroCollectAllTargetLibraries, let's get the list of all Non-CTK dependencies.
 
- # NON_CTK_DEPENDENCIES is expected by the macro ctkMacroShouldAddExternalProject
 
- ctkMacroGetAllNonCTKTargetLibraries("${ALL_TARGET_LIBRARIES}" NON_CTK_DEPENDENCIES)
 
- #MESSAGE(STATUS NON_CTK_DEPENDENCIES:${NON_CTK_DEPENDENCIES})
 
- #-----------------------------------------------------------------------------
 
- # Qt is expected to be setup by CTK/CMakeLists.txt just before it includes the SuperBuild script
 
- #
 
- #-----------------------------------------------------------------------------
 
- # ExternalProjects
 
- #
 
- SET(external_projects
 
-   CTKData
 
-   Log4Qt
 
-   KWStyle
 
-   PythonQt
 
-   PythonQtGenerator # Should be added after PythonQt - See comment in CMakeExternals/PythonQtGenerator.cmake
 
-   DCMTK
 
-   ZMQ
 
-   QtMobility
 
-   OpenIGTLink
 
-   VTK
 
-   XIP
 
-   )
 
- # Include external projects
 
- FOREACH(p ${external_projects})
 
-   INCLUDE(CMakeExternals/${p}.cmake)
 
- ENDFOREACH()
 
-    
 
- #-----------------------------------------------------------------------------
 
- # CTK Utilities
 
- #
 
- set(proj CTK-Utilities)
 
- ExternalProject_Add(${proj}
 
-   DOWNLOAD_COMMAND ""
 
-   CONFIGURE_COMMAND ""
 
-   BUILD_COMMAND ""
 
-   INSTALL_COMMAND ""
 
-   DEPENDS
 
-     # Mandatory dependencies
 
-     ${Log4Qt_DEPENDS}
 
-     # Optionnal dependencies
 
-     ${CTKData_DEPENDS}
 
-     ${QtMobility_DEPENDS}
 
-     ${kwstyle_DEPENDS}
 
-     ${DCMTK_DEPENDS}
 
-     ${PythonQt_DEPENDS}
 
-     ${PythonQtGenerator_DEPENDS}
 
-     ${ZMQ_DEPENDS}
 
-     ${OpenIGTLink_DEPENDS}
 
-     ${VTK_DEPENDS}
 
-     ${XIP_DEPENDS}    
 
- )
 
- #-----------------------------------------------------------------------------
 
- # Generate cmake variable name corresponding to Libs, Plugins and Applications
 
- #
 
- SET(ctk_libs_bool_vars)
 
- FOREACH(lib ${CTK_LIBS_SUBDIRS})
 
-   LIST(APPEND ctk_libs_bool_vars CTK_LIB_${lib})
 
- ENDFOREACH()
 
- SET(ctk_plugins_bool_vars)
 
- FOREACH(plugin ${CTK_PLUGINS_SUBDIRS})
 
-   LIST(APPEND ctk_plugins_bool_vars CTK_PLUGIN_${plugin})
 
- ENDFOREACH()
 
- SET(ctk_applications_bool_vars)
 
- FOREACH(app ${CTK_APPLICATIONS_SUBDIRS})
 
-   LIST(APPEND ctk_applications_bool_vars CTK_APP_${app})
 
- ENDFOREACH()
 
- #-----------------------------------------------------------------------------
 
- # Set superbuild boolean args
 
- #
 
- SET(ctk_cmake_boolean_args
 
-   BUILD_TESTING
 
-   CTK_USE_KWSTYLE
 
-   WITH_COVERAGE
 
-   DOCUMENTATION_TARGET_IN_ALL
 
-   CTEST_USE_LAUNCHERS
 
-   CTK_WRAP_PYTHONQT_FULL
 
-   CTK_WRAP_PYTHONQT_LIGHT
 
-   ${ctk_libs_bool_vars}
 
-   ${ctk_plugins_bool_vars}
 
-   ${ctk_applications_bool_vars}
 
-   ${ctk_lib_options_list}
 
-   )
 
- SET(ctk_superbuild_boolean_args)
 
- FOREACH(ctk_cmake_arg ${ctk_cmake_boolean_args})
 
-   LIST(APPEND ctk_superbuild_boolean_args -D${ctk_cmake_arg}:BOOL=${${ctk_cmake_arg}})
 
- ENDFOREACH()
 
- # MESSAGE("CMake args:")
 
- # FOREACH(arg ${ctk_superbuild_boolean_args})
 
- #   MESSAGE("  ${arg}")
 
- # ENDFOREACH()
 
- #-----------------------------------------------------------------------------
 
- # CTK Configure
 
- #
 
- SET(proj CTK-Configure)
 
- ExternalProject_Add(${proj}
 
-   DOWNLOAD_COMMAND ""
 
-   CMAKE_GENERATOR ${gen}
 
-   CMAKE_ARGS
 
-     ${ctk_superbuild_boolean_args}
 
-     -DCTK_SUPERBUILD:BOOL=OFF
 
-     -DDOCUMENTATION_ARCHIVES_OUTPUT_DIRECTORY:PATH=${DOCUMENTATION_ARCHIVES_OUTPUT_DIRECTORY}
 
-     -DCTK_SUPERBUILD_BINARY_DIR:PATH=${CTK_BINARY_DIR}
 
-     -DCTK_CMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CTK_CMAKE_ARCHIVE_OUTPUT_DIRECTORY}
 
-     -DCTK_CMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CTK_CMAKE_LIBRARY_OUTPUT_DIRECTORY}
 
-     -DCTK_CMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CTK_CMAKE_RUNTIME_OUTPUT_DIRECTORY}
 
-     -DCMAKE_INSTALL_PREFIX:PATH=${ep_install_dir}
 
-     -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}
 
-     -DCTK_CXX_FLAGS:STRING=${CTK_CXX_FLAGS}
 
-     -DCTK_C_FLAGS:STRING=${CTK_C_FLAGS}
 
-     -DCTK_EXTERNAL_LIBRARY_DIRS:STRING=${CTK_EXTERNAL_LIBRARY_DIRS}
 
-     -DQT_QMAKE_EXECUTABLE:FILEPATH=${QT_QMAKE_EXECUTABLE}
 
-     # External projects
 
-     -DCTKData_DIR:PATH=${CTKData_DIR}
 
- 	  -DZMQ_DIR:PATH=${ZMQ_DIR}                     # FindVTK expects VTK_DIR variable to be defined
 
- 	  -DOpenIGTLink_DIR:PATH=${OpenIGTLink_DIR}     # FindOpenIGTLink expects OpenIGTLink_DIR variable to be defined
 
-     -DCTK_KWSTYLE_EXECUTABLE:FILEPATH=${CTK_KWSTYLE_EXECUTABLE}
 
-     -DDCMTK_DIR:PATH=${DCMTK_DIR} # FindDCMTK expects DCMTK_DIR variable to be defined
 
-     -DVTK_DIR:PATH=${VTK_DIR}     # FindVTK expects VTK_DIR variable to be defined
 
-     -DPYTHON_EXECUTABLE:FILEPATH=${PYTHON_EXECUTABLE}   # FindPythonInterp expects PYTHON_EXECUTABLE variable to be defined
 
-     -DPYTHON_INCLUDE_DIR:PATH=${PYTHON_INCLUDE_DIR}     # FindPythonQt expects PYTHON_INCLUDE_DIR variable to be defined
 
-     -DPYTHON_LIBRARY:FILEPATH=${PYTHON_LIBRARY}         # FindPythonQt expects PYTHON_LIBRARY variable to be defined
 
-     -DPYTHONQT_INSTALL_DIR:PATH=${PYTHONQT_INSTALL_DIR} # FindPythonQt expects PYTHONQT_INSTALL_DIR variable to be defined
 
-     -DPYTHONQTGENERATOR_EXECUTABLE:FILEPATH=${PYTHONQTGENERATOR_EXECUTABLE} #FindPythonQtGenerator expects PYTHONQTGENERATOR_EXECUTABLE to be defined
 
-     -DLog4Qt_DIR:PATH=${Log4Qt_DIR} # FindLog4Qt expects Log4Qt_DIR variable to be defined
 
-   SOURCE_DIR ${CTK_SOURCE_DIR}
 
-   BINARY_DIR ${CTK_BINARY_DIR}/CTK-build
 
-   BUILD_COMMAND ""
 
-   INSTALL_COMMAND ""
 
-   DEPENDS
 
-     "CTK-Utilities"
 
-   )
 
- #-----------------------------------------------------------------------------
 
- # CTK
 
- #
 
- #MESSAGE(STATUS SUPERBUILD_EXCLUDE_CTKBUILD_TARGET:${SUPERBUILD_EXCLUDE_CTKBUILD_TARGET})
 
- IF(NOT DEFINED SUPERBUILD_EXCLUDE_CTKBUILD_TARGET OR NOT SUPERBUILD_EXCLUDE_CTKBUILD_TARGET)
 
-   SET(proj CTK-build)
 
-   ExternalProject_Add(${proj}
 
-     DOWNLOAD_COMMAND ""
 
-     CMAKE_GENERATOR ${gen}
 
-     SOURCE_DIR ${CTK_SOURCE_DIR}
 
-     BINARY_DIR CTK-build
 
-     INSTALL_COMMAND ""
 
-     DEPENDS
 
-       "CTK-Configure"
 
-     )
 
- ENDIF()
 
- #-----------------------------------------------------------------------------
 
- # Custom target allowing to drive the build of CTK project itself
 
- #
 
- ADD_CUSTOM_TARGET(CTK
 
-   COMMAND ${CMAKE_COMMAND} --build ${CTK_BINARY_DIR}/CTK-build
 
-   WORKING_DIRECTORY ${CTK_BINARY_DIR}/CTK-build
 
-   )
 
 
  |