Merge pull request #7486 from EstebanDugueperoux2/TestAllExamples

cmake: Try to build and run others examples
This commit is contained in:
Esteban Dugueperoux
2026-01-26 13:20:21 +01:00
committed by GitHub
14 changed files with 188 additions and 170 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
add_subdirectory(schema)
add_library(geometry_serializer STATIC Serialization.cpp)
add_library(geometry_serializer Serialization.cpp)
file(GLOB IFCGEOM_SERIALIZATION_H_FILE *.h)
set_target_properties(
@@ -1,5 +1,5 @@
foreach(schema ${SCHEMA_VERSIONS})
add_library(geometry_serializer_ifc${schema} STATIC Serialization.cpp)
add_library(geometry_serializer_ifc${schema} OBJECT Serialization.cpp)
target_link_libraries(geometry_serializer_ifc${schema} ${OpenCASCADE_LIBRARIES})
set_target_properties(
geometry_serializer_ifc${schema}