mmpp/MMPP:lib/examples/CMakeLists.txt

12 lines
377 B
CMake

cmake_minimum_required(VERSION 3.9)
project(examples)
link_libraries(mmpp)
include_directories(../)
add_executable(testmove tmcmdlnopts.c tm.c)
target_link_libraries(testmove -lusefull_macros)
install(TARGETS testmove DESTINATION "bin")
add_executable(wheels wheelscmdlnopts.c wheels.c)
target_link_libraries(wheels -lusefull_macros)
install(TARGETS wheels DESTINATION "bin")