diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-07 00:09:00 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-07 01:55:23 -0600 |
commit | 4d5a8b2f99be5e04954c5067080d1725af8c0ae7 (patch) | |
tree | 2b1d87719555eeb2159e7e79dcac5605dbb45c74 /libcr_ipc/CMakeLists.txt | |
parent | 599c887d12d406296f356a02b1088f04ffe1f26e (diff) |
libcr_ipc: Pull as much as possible from public .h to .c files
Diffstat (limited to 'libcr_ipc/CMakeLists.txt')
-rw-r--r-- | libcr_ipc/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libcr_ipc/CMakeLists.txt b/libcr_ipc/CMakeLists.txt index cf8e5fd..7d249d7 100644 --- a/libcr_ipc/CMakeLists.txt +++ b/libcr_ipc/CMakeLists.txt @@ -6,11 +6,15 @@ add_library(libcr_ipc INTERFACE) target_include_directories(libcr_ipc PUBLIC INTERFACE ${CMAKE_CURRENT_LIST_DIR}/include) target_sources(libcr_ipc INTERFACE + _linkedlist.c chan.c - select.c + mutex.c + rpc.c + sema.c ) target_link_libraries(libcr_ipc INTERFACE libcr + libmisc ) set(ipc_tests |