Files
.hive/old/templates/cmake-c/CMakeLists.txt

11 lines
154 B
CMake

cmake_minimum_required(VERSION 3.15)
project(Hello
DESCRIPTION "Hello World"
LANGUAGES C
)
add_executable(hello src/main.c)
install(TARGETS hello)