diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-11 10:22:26 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-11 19:19:48 -0700 |
commit | 6ae2bbf849aa597054d7c84d20fc634ed87a1da5 (patch) | |
tree | c1deed14207996f685f28a5fb5d553db130d205c /libcr/CMakeLists.txt | |
parent | da46fcb709b9df47d788341b3bd87c545f720f4f (diff) |
libmisc: Write my own assert.h with assert_notreached()
Diffstat (limited to 'libcr/CMakeLists.txt')
-rw-r--r-- | libcr/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcr/CMakeLists.txt b/libcr/CMakeLists.txt index ae7c8fe..fbc7618 100644 --- a/libcr/CMakeLists.txt +++ b/libcr/CMakeLists.txt @@ -8,6 +8,9 @@ target_include_directories(libcr SYSTEM INTERFACE ${CMAKE_CURRENT_LIST_DIR}/incl target_sources(libcr INTERFACE coroutine.c ) +target_link_libraries(libcr INTERFACE + libmisc +) target_compile_options(libcr INTERFACE -fno-split-stack ) |