ADD: added Sensor virtual PArent class

This commit is contained in:
Henry Winkel
2023-01-18 13:41:15 +01:00
parent f07a07b8d8
commit 193336e7fb
9 changed files with 413 additions and 5 deletions

View File

@@ -57,8 +57,9 @@ add_library(SimCore STATIC
include/SimCore/UtilFunctions.hpp
src/SimCore/UtilFunctions.cpp
include/SimCore/Sensor.hpp
src/SimCore/Sensor.cpp
)
target_link_libraries(SimCore
@@ -131,6 +132,10 @@ IF (${TEST_SIMCORE_LIBRARY})
target_link_libraries(test_UtilFunctions Catch2::Catch2 SimCore loguru)
catch_discover_tests(test_UtilFunctions)
add_executable(test_SensorClass tests/test_SensorClass.cpp)
target_link_libraries(test_SensorClass Catch2::Catch2 SimCore loguru)
catch_discover_tests(test_SensorClass)
ENDIF()