mirror of
https://github.com/eddyem/small_tel.git
synced 2025-12-06 02:35:14 +03:00
14 lines
441 B
CMake
14 lines
441 B
CMake
project(examples)
|
|
|
|
# common includes & library
|
|
include_directories(../)
|
|
link_libraries(sidservo usefull_macros -lm)
|
|
|
|
# exe list
|
|
add_executable(goto goto.c dump.c conf.c)
|
|
add_executable(dump dumpmoving.c dump.c conf.c)
|
|
add_executable(dump_s dumpmoving_scmd.c dump.c conf.c)
|
|
add_executable(dumpswing dumpswing.c dump.c conf.c)
|
|
add_executable(traectory_s scmd_traectory.c dump.c traectories.c conf.c)
|
|
add_executable(SSIIconf SSIIconf.c conf.c)
|