## Version: $Id$ ## ###################################################################### ## ### Commentary: ## ###################################################################### ## ### Change Log: ## ###################################################################### ## ### Code: set(DTK_BUILD_32 0) set(DTK_BUILD_64 1) ## ################################################################### ## ## ################################################################### set(dtk_INCLUDE_DIR "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/") set(dtk_INCLUDE_DIRS "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include" "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtk" "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkCore" "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkLog" "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkMath" "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkMeta" "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkTest") set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/lib/cmake/dtk/") set(DTK_INSTALL_PREFIX "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk") set(dtk_INSTALL_DOCS "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/doc") set(dtk_WRAP_PREFIX "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/wrp") include("/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/lib/cmake/dtk/dtkDepends.cmake") include("/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/lib/cmake/dtk/dtkWrap.cmake") set_directory_properties(PROPERTIES TEST_INCLUDE_FILE "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/lib/cmake/dtk/dtkSetTestEnvironment.cmake") ## ################################################################### ## Options ## ################################################################### set(DTK_BUILD_DISTRIBUTED ON) set(DTK_BUILD_COMPOSER OFF) set(DTK_BUILD_SCRIPT OFF) set(DTK_BUILD_WRAPPERS OFF) set(DTK_BUILD_WIDGETS ON) set(DTK_BUILD_SUPPORT_CORE ON) set(DTK_BUILD_SUPPORT_CONTAINER OFF) set(DTK_BUILD_SUPPORT_COMPOSER OFF) set(DTK_BUILD_SUPPORT_DISTRIBUTED OFF) set(DTK_BUILD_SUPPORT_GUI ON) set(DTK_BUILD_SUPPORT_MATH ON) set(DTK_BUILD_SUPPORT_PLOT OFF) set(DTK_BUILD_SUPPORT_VR ON) set(DTK_ENABLE_COVERAGE OFF) set(DTK_COVERAGE_USE_COBERTURA ON) set(DTK_ENABLE_MEMCHECK OFF) set(DTK_HAVE_MPI NO) set(DTK_HAVE_VRPN NO) set(DTK_HAVE_NITE NO) set(DTK_HAVE_ZLIB YES) if(DTK_BUILD_DISTRIBUTED) set(dtk_INCLUDE_DIRS ${dtk_INCLUDE_DIRS} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkDistributed") set(dtk_INCLUDE_DIRS ${dtk_INCLUDE_DIRS} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkDistributedTest") endif(DTK_BUILD_DISTRIBUTED) if(DTK_BUILD_COMPOSER) set(dtk_INCLUDE_DIRS ${dtk_INCLUDE_DIRS} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkComposer") endif(DTK_BUILD_COMPOSER) if(DTK_BUILD_SCRIPT) set(dtk_INCLUDE_DIRS ${dtk_INCLUDE_DIRS} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkScript") endif(DTK_BUILD_SCRIPT) if(DTK_BUILD_WRAPPERS) set(SIP_FOUND ) set(SWIG_FOUND ) set(DTK_PYTHON_WRAPPER ) set(DTK_WRAPPING_PYTHON ) set(DTK_PYTHON_INSTALL_PATH ) set(DTK_WRAPPING_CSHARP ) set(DTK_WRAPPING_TCL ) endif(DTK_BUILD_WRAPPERS) if(DTK_BUILD_WIDGETS) set(dtk_INCLUDE_DIRS ${dtk_INCLUDE_DIRS} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkWidgets") endif(DTK_BUILD_WIDGETS) if(DTK_BUILD_SUPPORT_CORE) set(dtk_INCLUDE_DIRS ${dtk_INCLUDE_DIRS} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkCoreSupport") endif(DTK_BUILD_SUPPORT_CORE) if(DTK_BUILD_SUPPORT_CONTAINER) set(dtk_INCLUDE_DIRS ${dtk_INCLUDE_DIRS} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkContainerSupport") endif(DTK_BUILD_SUPPORT_CONTAINER) if(DTK_BUILD_SUPPORT_MATH) # dtkMathSuppor has conflicts with dtkMath and dtkLinearAlgebraSparse. ( and includes), # don't add include/dtkMathSupport in the dtk_INCLUDE_DIRS # set(dtk_INCLUDE_DIRS ${dtk_INCLUDE_DIRS} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkMathSupport") endif(DTK_BUILD_SUPPORT_MATH) if(DTK_BUILD_SUPPORT_GUI) set(dtk_INCLUDE_DIRS ${dtk_INCLUDE_DIRS} "/Volumes/Data/workspace/med-macos-weekly/build/../sdk/dependencies/dtk/include/dtkGuiSupport") endif(DTK_BUILD_SUPPORT_GUI) ## ################################################################### ## Always full RPATH ## ################################################################### include(GNUInstallDirs) list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}" isSystemDir) message(STATUS ${CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES}) if("${isSystemDir}" STREQUAL "-1") set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}") endif("${isSystemDir}" STREQUAL "-1") set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) function(PREPEND var prefix) set(listVar "") foreach(f ${ARGN}) list(APPEND listVar "${prefix}/${f}") endforeach(f) set(${var} "${listVar}" PARENT_SCOPE) endfunction(PREPEND) ###################################################################### ### dtkConfig.cmake.in ends here