aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-07-14 12:53:16 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-07-14 12:53:16 -0400
commit01e648b1391dd84f8e63494f75f5e6a9dfe375b6 (patch)
tree9ed0d618923004b60ce4157a8cdb221769092683 /CMakeLists.txt
downloadidcmp-01e648b1391dd84f8e63494f75f5e6a9dfe375b6.tar.gz
Initial commit
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..18a7186
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,6 @@
+cmake_minimum_required(VERSION 2.8)
+project(idcmp C)
+
+set(CMAKE_C_STANDARD 99)
+
+add_executable(idcmp main.c)