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