feat: add network manager and GeometryOperator

This commit is contained in:
parker
2025-07-03 18:41:36 +01:00
parent 503ca43713
commit a255b9a37c
7 changed files with 73 additions and 0 deletions

View File

@@ -55,8 +55,12 @@ target_include_directories(${AppExec} PUBLIC src)
add_executable(${TestExec}
tests/main-tests.cpp
tests/OperatorTests.cpp
tests/NetworkTests.cpp
src/Engine/Operator/Attribute.cpp
src/Engine/Operator/Geometry.cpp
src/Engine/Operator/GeometryOperator.cpp
src/Engine/Network/NetworkManager.cpp
)
find_package(Catch2 3 REQUIRED)
target_link_libraries(${TestExec} PRIVATE Catch2::Catch2WithMain Eigen3::Eigen)