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