mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-10 14:07:43 +00:00
9 lines
256 B
CMake
9 lines
256 B
CMake
find_package(Boost REQUIRED)
|
|
|
|
file(GLOB CPP_FILES *.cpp)
|
|
set(SOURCE_FILES ${CPP_FILES})
|
|
add_executable(IfcGeomServer ${SOURCE_FILES})
|
|
target_link_libraries(IfcGeomServer IfcGeom ${kernel_libraries} ${OPENCASCADE_LIBRARIES})
|
|
|
|
install(TARGETS IfcGeomServer)
|