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
+1 -1
View File
@@ -56,7 +56,7 @@ endif()
target_link_libraries(svgfill PRIVATE ${Boost_LIBRARIES} ${BCRYPT_LIBRARIES} LibXml2::LibXml2 IFCOPENSHELL_CGAL IfcParse)
target_compile_definitions(svgfill PUBLIC IFC_SHARED_BUILD)
set_target_properties(svgfill PROPERTIES PUBLIC_HEADER "${LIB_H_FILES}")
set_target_properties(svgfill PROPERTIES OUTPUT_NAME "ifcopenshell.geometry.svgfill")
set_target_properties(svgfill PROPERTIES OUTPUT_NAME "ifcopenshell_geometry_svgfill")
ifcopenshell_wasm_plugin_link_options(svgfill ifcopenshell_register_linework_processing_plugin_v1)
add_executable(svgfill_exe src/main.cpp)
@@ -36,8 +36,8 @@ PLUGIN_API std::filesystem::path add_search_paths_or_default(manager& manager, s
namespace {
struct provider_state {
svgfill::linework_processing_plugin::api api;
ifcopenshell::plugin::module module;
svgfill::linework_processing_plugin::api api;
};
std::filesystem::path plugin_directory() {
+1 -1
View File
@@ -31,7 +31,7 @@ void destroy_arrangement(abstract_arrangement* arrangement);
namespace linework_processing_plugin {
constexpr const char* id = "geometry.svgfill";
constexpr const char* id = "geometry_svgfill";
constexpr const char* registration_symbol = "ifcopenshell_register_linework_processing_plugin_v1";
struct api {