From e7c422469af29a599c2086bb95e3c8b6c10b9135 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 18 Nov 2025 16:26:57 +0500 Subject: [PATCH] IfcGeomServer cmake - remove not required `chrono` component #7337 Noticed Linux build failing now --- src/ifcgeomserver/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcgeomserver/CMakeLists.txt b/src/ifcgeomserver/CMakeLists.txt index 429d56c056..d6b1e258b7 100644 --- a/src/ifcgeomserver/CMakeLists.txt +++ b/src/ifcgeomserver/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(Boost COMPONENTS chrono REQUIRED) +find_package(Boost REQUIRED) file(GLOB CPP_FILES *.cpp) file(GLOB H_FILES *.h) @@ -6,4 +6,4 @@ set(SOURCE_FILES ${CPP_FILES} ${H_FILES}) add_executable(IfcGeomServer ${SOURCE_FILES}) target_link_libraries(IfcGeomServer IfcGeom ${kernel_libraries} ${OPENCASCADE_LIBRARIES}) -install(TARGETS IfcGeomServer) \ No newline at end of file +install(TARGETS IfcGeomServer)