add c-api test

This commit is contained in:
2026-04-11 21:27:04 +08:00
parent 799cea1c05
commit 3a01bbaad4
3 changed files with 55 additions and 3 deletions

View File

@@ -14,10 +14,18 @@ target_link_libraries(test_ipc_c_api
fifo_ipc
)
add_executable(test_ipc_python
test_ipc_python.cpp
add_executable(test_ipc_python_cpp
test_ipc_python_cpp.cpp
)
target_link_libraries(test_ipc_python
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
)