2025-11-10 23:04:42 +01:00
|
|
|
# IfcConvert
|
2026-04-15 18:07:28 +02:00
|
|
|
add_executable(IfcConvert IfcConvert.cpp)
|
2025-11-10 23:04:42 +01:00
|
|
|
|
2025-11-19 14:02:07 +01:00
|
|
|
target_link_libraries(IfcConvert IfcGeom IfcParse Serializers ${OpenCASCADE_LIBRARIES} ${Boost_LIBRARIES} ${HDF5_LIBRARIES} ${USD_LIBRARIES})
|
2026-04-17 11:24:09 +02:00
|
|
|
if(kernel_libraries OR mapping_libraries OR document_serializer_libraries)
|
|
|
|
|
add_dependencies(IfcConvert ${kernel_libraries} ${mapping_libraries} ${document_serializer_libraries})
|
|
|
|
|
endif()
|
2025-11-10 23:04:42 +01:00
|
|
|
|
2025-11-28 16:45:40 +01:00
|
|
|
install(TARGETS IfcConvert)
|