2 # This file is included in the top-level MITK CMakeLists.txt file to 3 # allow early dependency checking 5 option(MITK_BUILD_APP_Workbench
"Build the MITK Workbench executable" ON)
6 option(MITK_BUILD_APP_FlowBench
"Build the MITK FlowBench executable" OFF)
8 # This variable is fed to ctkFunctionSetupPlugins() macro in the 9 # top-level MITK CMakeLists.txt file. This allows to automatically 10 # enable required plug-in runtime dependencies for applications using 11 # the CTK DGraph executable and the ctkMacroValidateBuildOptions macro. 12 # For this to work, directories containing executables must contain 13 # a CMakeLists.txt file containing a "project(...)" command and a 14 # target_libraries.cmake file setting a list named "target_libraries" 15 # with required plug-in target names. 17 # Format is "Directory Name^^CMake Option Name^^Executable Name (without file suffix)" 19 Workbench^^MITK_BUILD_APP_Workbench^^MitkWorkbench
20 FlowBench^^MITK_BUILD_APP_FlowBench^^MitkFlowBench