4 lines
93 B
CMake
4 lines
93 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(HelloWorld C)
|
|
|
|
add_executable(hello src/main.c)
|