Use underscore plugin artifact names

Generated with the assistance of an AI coding tool.
This commit is contained in:
Thomas Krijnen
2026-08-09 09:52:17 +02:00
parent c818f48a47
commit a441757080
26 changed files with 46 additions and 35 deletions
@@ -28,7 +28,7 @@ PLUGIN_API std::filesystem::path add_search_paths_or_default(manager& manager, s
}
namespace {
constexpr const char* opencascade_geometry_ifc_writer_plugin_prefix = "geometry.writer.";
constexpr const char* opencascade_geometry_ifc_writer_plugin_prefix = "geometry_writer_";
}
const char* ifcopenshell::geom::opencascade_geometry_ifc_writer_plugin_registration_symbol() {
@@ -5,7 +5,7 @@ foreach(schema ${SCHEMA_VERSIONS})
target_link_libraries(geometry_serializer_ifc${schema} PRIVATE plugin geometry_serializer IfcGeom IfcParse parse_schema_ifc${schema} ${OpenCASCADE_LIBRARIES})
set_target_properties(geometry_serializer_ifc${schema} PROPERTIES
COMPILE_FLAGS "-DIfcSchema=Ifc${schema}"
OUTPUT_NAME "ifcopenshell.geometry.writer.ifc${schema}"
OUTPUT_NAME "ifcopenshell_geometry_writer_ifc${schema}"
RUNTIME_OUTPUT_DIRECTORY "${geometry_serialization_plugin_runtime_dir}"
LIBRARY_OUTPUT_DIRECTORY "${geometry_serialization_plugin_runtime_dir}"
)
+1 -1
View File
@@ -29,9 +29,9 @@ public:
private:
struct entry {
ifcopenshell::plugin::module module_;
serialise_fn serialise_;
tesselate_fn tesselate_;
ifcopenshell::plugin::module module_;
};
std::map<std::string, entry> entries_;