Rename to helpers

This commit is contained in:
Thomas Krijnen
2026-07-03 11:18:57 +02:00
parent 5873b05b84
commit a54a8b80d3
11 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -275,7 +275,7 @@ add_dependencies(IfcViewer ${kernel_libraries} ${mapping_libraries})
target_link_libraries(IfcViewer PUBLIC
IfcViewerCore
IfcUtil
helpers
IfcGeom
IfcParse
${OpenCASCADE_LIBRARIES}
+3 -3
View File
@@ -158,11 +158,11 @@ target_link_libraries(test_federation PRIVATE
Qt${QT_VERSION}::Gui # Federation::HomeView uses QVector3D from QtGui
Qt${QT_VERSION}::Test # QSignalSpy
Eigen3::Eigen # Federation.h: composed matrices use Eigen
# IfcUtil provides Unit::convert + Geolocation helpers
# helpers provides Unit::convert + Geolocation helpers
# (helmertMetersFromParameters, getWcs, getMapUnit) + Placement
# (getAxis2Placement, called from Geolocation::getWcs). Linking the
# static lib avoids re-compiling those .cpp files here and pulls
# the IfcUtil include dir + IfcParse transitively.
IfcUtil
# the src/helpers include dir + IfcParse transitively.
helpers
)
catch_discover_tests(test_federation)