mirror of
https://github.com/eddyem/mmpp.git
synced 2025-12-06 02:25:15 +03:00
12 lines
377 B
CMake
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")
|