From 9cca501eea163eba2e72e181bef6af9c7f09237c Mon Sep 17 00:00:00 2001 From: Uwe Date: Sun, 22 May 2022 19:40:02 +0200 Subject: [PATCH] [CMake] remove traces of assembly module the assembly module was removed for FC 0.20 but it appears still in CMake as build option. This PR tries to remove the remaining traces (maybe more needs to be done?) --- cMake/FreeCAD_Helpers/InitializeFreeCADBuildOptions.cmake | 1 - src/Mod/Import/App/CMakeLists.txt | 1 - 2 files changed, 2 deletions(-) diff --git a/cMake/FreeCAD_Helpers/InitializeFreeCADBuildOptions.cmake b/cMake/FreeCAD_Helpers/InitializeFreeCADBuildOptions.cmake index 972214c0d3..5392d3bc07 100644 --- a/cMake/FreeCAD_Helpers/InitializeFreeCADBuildOptions.cmake +++ b/cMake/FreeCAD_Helpers/InitializeFreeCADBuildOptions.cmake @@ -111,7 +111,6 @@ macro(InitializeFreeCADBuildOptions) option(BUILD_TEMPLATE "Build the FreeCAD template module which is only for testing purposes" OFF) option(BUILD_ADDONMGR "Build the FreeCAD addon manager module" ON) option(BUILD_ARCH "Build the FreeCAD Architecture module" ON) - option(BUILD_ASSEMBLY "Build the FreeCAD Assembly module" OFF) option(BUILD_COMPLETE "Build the FreeCAD complete module" OFF) option(BUILD_DRAFT "Build the FreeCAD draft module" ON) option(BUILD_DRAWING "Build the FreeCAD drawing module" ON) diff --git a/src/Mod/Import/App/CMakeLists.txt b/src/Mod/Import/App/CMakeLists.txt index 8a28e52026..e176f4cc89 100644 --- a/src/Mod/Import/App/CMakeLists.txt +++ b/src/Mod/Import/App/CMakeLists.txt @@ -18,7 +18,6 @@ link_directories(${OCC_LIBRARY_DIR}) set(Import_LIBS Part - #Assembly ${OCC_OCAF_LIBRARIES} ${OCC_OCAF_DEBUG_LIBRARIES} )