Files
fifo_ipc/test/CMakeLists.txt
2023-01-26 13:56:18 +08:00

24 lines
311 B
CMake

add_executable(test_ipc
test_ipc.cpp
)
target_link_libraries(test_ipc
fifo_ipc
)
add_executable(test_ipc_c_api
test_ipc_c_api.cpp
)
target_link_libraries(test_ipc_c_api
fifo_ipc
)
add_executable(test_ipc_python
test_ipc_python.cpp
)
target_link_libraries(test_ipc_python
fifo_ipc
)