From 9d99683fa3ab738f05b793bf3f0f7ce5118029c8 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Fri, 5 Feb 2021 19:36:15 +0100 Subject: [PATCH] add: CMakeLists.txt --- CMakeLists.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0778114 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.13.4) + +set(CMAKE_C_COMPILER gcc) +set(CMAKE_C_FLAGS "-Wall -lm") + +project(discspan) + +set(SOURCES discspan.c readfile.c splitter.c help.c) +add_executable(discspan ${SOURCES}) -- 2.39.5