mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 10:45:12 +03:00
8 lines
180 B
CMake
8 lines
180 B
CMake
cmake_minimum_required(VERSION 3.9)
|
|
project(examples)
|
|
link_libraries(usefull_macros)
|
|
include_directories(../)
|
|
|
|
#target_link_libraries(hello -lm)
|
|
add_executable(hello helloworld.c)
|