mirror of
https://github.com/eddyem/mmpp.git
synced 2025-12-06 10:35:16 +03:00
10 lines
291 B
CMake
10 lines
291 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)
|
|
add_executable(wheels wheelscmdlnopts.c wheels.c)
|
|
target_link_libraries(wheels -lusefull_macros)
|