summaryrefslogtreecommitdiff
path: root/libcr
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-27 19:00:18 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-27 19:00:18 -0600
commitd54ddec236bf9bdb8c032cd5fbdb0aa46ffebe86 (patch)
treeb2a4563347f4b91d276f174303e0a7b81c525b34 /libcr
parentb1fc106b5294d162415ff715c6dece11945efdb2 (diff)
use GNU Make for `generate`
Diffstat (limited to 'libcr')
-rw-r--r--libcr/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcr/CMakeLists.txt b/libcr/CMakeLists.txt
index ad7997f..14acba6 100644
--- a/libcr/CMakeLists.txt
+++ b/libcr/CMakeLists.txt
@@ -4,7 +4,7 @@
# SPDX-Licence-Identifier: AGPL-3.0-or-later
add_library(libcr INTERFACE)
+target_include_directories(libcr SYSTEM INTERFACE ${CMAKE_CURRENT_LIST_DIR}/include)
target_sources(libcr INTERFACE
- ${CMAKE_CURRENT_LIST_DIR}/coroutine.c
+ coroutine.c
)
-target_include_directories(libcr SYSTEM INTERFACE ${CMAKE_CURRENT_LIST_DIR}/include)