First steps to move from Make to CMake.

This commit is contained in:
Johannes Findeisen 2023-11-02 02:05:55 +01:00
commit 8a6cdbd267
5 changed files with 22 additions and 15 deletions

6
CMakeLists.txt Normal file
View file

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.26)
project(spacetray C)
set(CMAKE_C_STANDARD 11)
add_executable(spacetray spacetray.c)