fin: feature complete, all tests pass ready to merge
This commit is contained in:
parent
f63d40cffb
commit
544d50ee6a
@ -11,6 +11,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|||||||
# Core library
|
# Core library
|
||||||
add_library(core
|
add_library(core
|
||||||
src/core/SysfsRead.cxx
|
src/core/SysfsRead.cxx
|
||||||
|
src/core/UnixIpcBridge.cxx
|
||||||
src/core/Producer.cxx
|
src/core/Producer.cxx
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@ -25,3 +25,15 @@ target_link_libraries(test_producer
|
|||||||
|
|
||||||
add_test(NAME test_producer COMMAND test_producer)
|
add_test(NAME test_producer COMMAND test_producer)
|
||||||
|
|
||||||
|
add_executable(test_ipc
|
||||||
|
test_unix_ipc.cxx
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(test_ipc
|
||||||
|
PRIVATE
|
||||||
|
core
|
||||||
|
gtest
|
||||||
|
gtest_main
|
||||||
|
)
|
||||||
|
|
||||||
|
add_test(NAME test_ipc COMMAND test_ipc)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user