diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-27 17:25:36 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-27 17:25:36 -0600 |
commit | e5e15c04bc58c34906e6d7cfcbad68d1a5617563 (patch) | |
tree | 580f5fb0fafc7e974c969fc8aae229205c836195 /libcr_ipc/CMakeLists.txt | |
parent | 71e1a86a033c380f85dd300d788af63bfef25bab (diff) |
wip
Diffstat (limited to 'libcr_ipc/CMakeLists.txt')
-rw-r--r-- | libcr_ipc/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libcr_ipc/CMakeLists.txt b/libcr_ipc/CMakeLists.txt new file mode 100644 index 0000000..3efb6d9 --- /dev/null +++ b/libcr_ipc/CMakeLists.txt @@ -0,0 +1,10 @@ +# libcr_ipc/CMakeLists.txt - TODO +# +# Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> +# SPDX-Licence-Identifier: AGPL-3.0-or-later + +add_library(libcr_ipc INTERFACE) +target_sources(libcr_ipc INTERFACE + ${CMAKE_CURRENT_LIST_DIR}/sema.c +) +target_include_directories(libcr_ipc SYSTEM INTERFACE ${CMAKE_CURRENT_LIST_DIR}/include) |