Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
AppList.cmake
Go to the documentation of this file.
1 
2 # This file is included in the top-level MITK CMakeLists.txt file to
3 # allow early dependency checking
4 
5 option(MITK_BUILD_APP_CoreApp "Build the MITK CoreApp" OFF)
6 option(MITK_BUILD_APP_Workbench "Build the MITK Workbench executable" ON)
7 option(MITK_BUILD_APP_Diffusion "Build the MITK Diffusion executable" OFF)
8 
9 # This variable is fed to ctkFunctionSetupPlugins() macro in the
10 # top-level MITK CMakeLists.txt file. This allows to automatically
11 # enable required plug-in runtime dependencies for applications using
12 # the CTK DGraph executable and the ctkMacroValidateBuildOptions macro.
13 # For this to work, directories containing executables must contain
14 # a CMakeLists.txt file containing a "project(...)" command and a
15 # target_libraries.cmake file setting a list named "target_libraries"
16 # with required plug-in target names.
17 
18 # Format is "Directory Name^^CMake Option Name^^Executable Name (without file suffix)"
19 set(MITK_APPS
20  CoreApp^^MITK_BUILD_APP_CoreApp^^MitkCoreApp
21  Workbench^^MITK_BUILD_APP_Workbench^^MitkWorkbench
22  Diffusion^^MITK_BUILD_APP_Diffusion^^MitkDiffusion
23 )