4 lines
87 B
CMake
4 lines
87 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(c_first C)
|
|
add_executable(c_first main.c)
|