mirror of
https://github.com/eddyem/snippets_library.git
synced 2025-12-06 02:35:20 +03:00
11 lines
237 B
CMake
11 lines
237 B
CMake
cmake_minimum_required(VERSION 3.9)
|
|
project(examples)
|
|
|
|
# common includes & library
|
|
include_directories(../)
|
|
link_libraries(usefull_macros)
|
|
|
|
# exe list
|
|
add_executable(helloworld helloworld.c)
|
|
add_executable(options options.c cmdlnopts.c)
|