24 lines
311 B
CMake
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
|
|
)
|