32 lines
439 B
CMake
32 lines
439 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_cpp
|
|
test_ipc_python_cpp.cpp
|
|
)
|
|
|
|
target_link_libraries(test_ipc_python_cpp
|
|
fifo_ipc
|
|
)
|
|
|
|
add_executable(test_ipc_python_c
|
|
test_ipc_python_c.c
|
|
)
|
|
|
|
target_link_libraries(test_ipc_python_c
|
|
fifo_ipc
|
|
)
|