parent
21ee76098b
commit
d0bcecc263
@ -0,0 +1,2 @@
|
||||
|
||||
add_subdirectory(assert)
|
@ -0,0 +1,5 @@
|
||||
add_library(assert utils_assert.c)
|
||||
target_compile_options(assert PRIVATE ${C_FLAGS})
|
||||
target_compile_definitions(assert PRIVATE ${C_DEFS})
|
||||
target_include_directories(assert PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${CSL_INCLUDES})
|
||||
add_library(sub::assert ALIAS assert)
|
@ -1,4 +1,4 @@
|
||||
#include "assert.h"
|
||||
#include "utils_assert.h"
|
||||
|
||||
void assert(int check)
|
||||
{
|
Loading…
Reference in new issue