From 883baf4189ad2ac4ac5e8643332606324fc46590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Br=C3=BCns?= Date: Mon, 8 Mar 2021 02:33:00 +0100 Subject: [PATCH] Remove occconstruction.cpp from list of library sources Since commit 0c3c3f32d173b3f7edcb40f9f6447fae60f02c05 ("occ build visualization mesh") occgeometry.cpp does not contain any compiled code, and it has not been used at least for 12 years. As the file includes quite some header files removing it from the sources should save some compile time. --- libsrc/occ/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/occ/CMakeLists.txt b/libsrc/occ/CMakeLists.txt index 9db6271b..ea5a756e 100644 --- a/libsrc/occ/CMakeLists.txt +++ b/libsrc/occ/CMakeLists.txt @@ -2,7 +2,7 @@ add_definitions(-DNGINTERFACE_EXPORTS) add_library(occ ${NG_LIB_TYPE} Partition_Inter2d.cxx Partition_Inter3d.cxx Partition_Loop.cxx Partition_Loop2d.cxx Partition_Loop3d.cxx Partition_Spliter.cxx - occconstruction.cpp occgenmesh.cpp occgeom.cpp occmeshsurf.cpp python_occ.cpp + occgenmesh.cpp occgeom.cpp occmeshsurf.cpp python_occ.cpp ) if(USE_GUI) add_library(occvis ${NG_LIB_TYPE} vsocc.cpp)