mirror of
https://github.com/eddyem/mmpp.git
synced 2025-12-07 02:55:16 +03:00
11 lines
331 B
CMake
11 lines
331 B
CMake
cmake_minimum_required(VERSION 3.9)
|
|
project(examples)
|
|
link_libraries(mmpp)
|
|
include_directories(../)
|
|
|
|
#target_link_libraries(hello -lm)
|
|
#add_executable(movestages movecmdlnopts.c move.c)
|
|
#target_link_libraries(movestages -lusefull_macros)
|
|
add_executable(testmove tmcmdlnopts.c tm.c)
|
|
target_link_libraries(testmove -lusefull_macros)
|