compile & link successful

This commit is contained in:
D4ve-R
2023-05-07 11:45:47 +02:00
parent 7e090f5709
commit 38b4a225ad
3 changed files with 45 additions and 36 deletions
+3 -2
View File
@@ -636,7 +636,8 @@ int main(int argc, char** argv) {
HDF = IfcUtil::path::from_utf8(".h5"),
XML = IfcUtil::path::from_utf8(".xml"),
CITY_JSON = IfcUtil::path::from_utf8(".cityjson"),
IFC = IfcUtil::path::from_utf8(".ifc");
IFC = IfcUtil::path::from_utf8(".ifc"),
USD = IfcUtil::path::from_utf8(".usd");
// @todo clean up serializer selection
// @todo detect program options that conflict with the chosen serializer
@@ -830,7 +831,7 @@ int main(int argc, char** argv) {
#endif
#ifdef WITH_USD
} else if (output_extension == USD) {
serializer = boost::make_shared<UsdSerializer>(IfcUtil::path::to_utf8(output_temp_filename), settings);
serializer = boost::make_shared<USDSerializer>(IfcUtil::path::to_utf8(output_temp_filename), settings);
#endif
#ifdef IFOPSH_WITH_OPENCASCADE
} else if (output_extension == STP) {