6 lines
123 B
Text
6 lines
123 B
Text
|
|
cmake_minimum_required(VERSION 3.26)
|
||
|
|
project(spacetray C)
|
||
|
|
|
||
|
|
set(CMAKE_C_STANDARD 11)
|
||
|
|
|
||
|
|
add_executable(spacetray spacetray.c)
|