9 lines
176 B
CMake
9 lines
176 B
CMake
file(GLOB_RECURSE libc_sources *.c *.h include/ivy/*.h)
|
|
|
|
add_library(ivy-c SHARED ${libc_sources})
|
|
target_link_libraries(
|
|
ivy-c
|
|
Bluelib::Core
|
|
Bluelib::Object
|
|
Bluelib::Cmd)
|