cmake: Have a dedicated CMakeLists.txt for IfcGeomServer

This commit is contained in:
Esteban DUGUEPEROUX
2025-11-10 21:21:52 +01:00
committed by Thomas Krijnen
parent 96da78c670
commit 6a7ecf7f58
2 changed files with 10 additions and 20 deletions
+9
View File
@@ -0,0 +1,9 @@
find_package(Boost COMPONENTS chrono REQUIRED)
file(GLOB CPP_FILES *.cpp)
file(GLOB H_FILES *.h)
set(SOURCE_FILES ${CPP_FILES} ${H_FILES})
add_executable(IfcGeomServer ${SOURCE_FILES})
target_link_libraries(IfcGeomServer IfcGeom ${kernel_libraries} ${OPENCASCADE_LIBRARIES})
install(TARGETS IfcGeomServer)