]> gitweb.hhaalo.de Git - discspan.git/commitdiff
add: CMakeLists.txt
authorBastian Dehn <hhaalo@arcor.de>
Fri, 5 Feb 2021 18:36:15 +0000 (19:36 +0100)
committerBastian Dehn <hhaalo@arcor.de>
Fri, 5 Feb 2021 18:36:15 +0000 (19:36 +0100)
CMakeLists.txt [new file with mode: 0644]

diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644 (file)
index 0000000..0778114
--- /dev/null
@@ -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})