first commit

This commit is contained in:
2023-01-26 13:56:18 +08:00
commit 4abe6bf738
17 changed files with 1105 additions and 0 deletions

23
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,23 @@
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
)