14 lines
286 B
CMake
14 lines
286 B
CMake
file(GLOB sources *.c)
|
|
add_executable(herdd ${sources})
|
|
target_link_libraries(herdd
|
|
libc libc-runtime
|
|
libmagenta libpthread liblaunch librosetta
|
|
fx.runtime fx.collections fx.serial)
|
|
|
|
sysroot_add_program(
|
|
NAME herdd
|
|
BIN_DIR /usr/bin)
|
|
bsp_add_program(
|
|
NAME herdd
|
|
BIN_DIR /usr/bin)
|