diff --git a/Modules/Remeshing/CMakeLists.txt b/Modules/Remeshing/CMakeLists.txt index f887c4bdda..e9a1809222 100644 --- a/Modules/Remeshing/CMakeLists.txt +++ b/Modules/Remeshing/CMakeLists.txt @@ -1,7 +1,8 @@ if(MITK_USE_ACVD) MITK_CREATE_MODULE(Remeshing + DEPENDS Mitk PACKAGE_DEPENDS ACVD ) add_subdirectory(Testing) endif() diff --git a/Modules/Simulation/CMakeLists.txt b/Modules/Simulation/CMakeLists.txt index a8f0f21102..886a063955 100644 --- a/Modules/Simulation/CMakeLists.txt +++ b/Modules/Simulation/CMakeLists.txt @@ -1,12 +1,13 @@ if(MITK_USE_SOFA) MITK_CREATE_MODULE(Simulation + DEPENDS Mitk PACKAGE_DEPENDS Boost SOFA ) if(MSVC) set(module_compile_flags "${module_compile_flags} /wd4250 /wd4251 /wd4267 /wd4275") set_target_properties(${MODULE_PROVIDES} PROPERTIES COMPILE_FLAGS "${module_compile_flags}") endif() add_subdirectory(Testing) endif()