mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 10:45:12 +03:00
7 lines
156 B
CMake
7 lines
156 B
CMake
cmake_minimum_required(VERSION 3.9)
|
|
project(myapp)
|
|
add_executable(myapp helloworld.c)
|
|
include_directories(../)
|
|
target_link_libraries(myapp usefull_macros)
|
|
|