6 lines
92 B
CMake
6 lines
92 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(test LANGUAGES C)
|
|
|
|
add_executable(test main.c)
|