Merge branch 'datamodel-v1.0' into ifcviewer-wgpu

This commit is contained in:
Thomas Krijnen
2026-07-03 10:30:16 +02:00
committed by GitHub
252 changed files with 35575 additions and 3562 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ function(add_geometry_serializer_plugin target output_name)
endfunction()
if(WITH_ROCKSDB)
add_document_serializer_plugin(document_serializer_rdb "document.rdb" SOURCES document_rdb_plugin.cpp RocksDbSerializer.cpp LIBRARIES RocksDB::rocksdb)
add_document_serializer_plugin(document_serializer_rdb "document.rdb" SOURCES document_rdb_plugin.cpp RocksDbSerializer.cpp LIBRARIES ${IFCOPENSHELL_ROCKSDB_TARGET})
endif()
add_subdirectory(schema_dependent)
+2
View File
@@ -23,6 +23,8 @@
#include "../ifcparse/utils.h"
#include <cstdint>
#ifdef WITH_PROJ
#include <proj.h>
#endif
+3
View File
@@ -4,6 +4,9 @@
#include <rocksdb/options.h>
#include <cstdint>
#include <cstring>
#include "../ifcparse/logger.h"
RocksDbSerializer::RocksDbSerializer(const std::string& input_filename, const std::string& rocksdb_filename, const std::vector<std::string>& skip_supertypes)