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