mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-17 14:02:27 +00:00
9 lines
307 B
CMake
9 lines
307 B
CMake
|
|
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)
|