7 lines
124 B
CMake
7 lines
124 B
CMake
cmake_minimum_required(VERSION 3.22)
|
|
project(GameTutorial C)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
add_executable(GameTutorial main.c)
|