feature/Producer #3

Merged
unai merged 6 commits from feature/Producer into main 2026-03-10 17:34:18 +00:00
2 changed files with 13 additions and 0 deletions
Showing only changes of commit 36093e6c73 - Show all commits

View File

@ -11,6 +11,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Core library
add_library(core
src/core/SysfsRead.cxx
src/core/Producer.cxx
)
target_include_directories(core PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)

View File

@ -12,4 +12,16 @@ target_link_libraries(test_sysfs_reader
gtest_main
)
add_test(NAME test_sysfs_reader COMMAND test_sysfs_reader)
add_executable(test_producer
test_producer.cxx
)
target_link_libraries(test_producer
PRIVATE
core
gtest
gtest_main
)
add_test(NAME test_producer COMMAND test_producer)