10 lines
157 B
CMake
10 lines
157 B
CMake
|
|
add_executable(test test.c)
|
||
|
|
target_link_libraries(test c)
|
||
|
|
|
||
|
|
sysroot_add_program(
|
||
|
|
NAME test
|
||
|
|
BIN_DIR /usr/bin)
|
||
|
|
bsp_add_program(
|
||
|
|
NAME test
|
||
|
|
BIN_DIR /usr/bin)
|