aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-11-01 18:53:50 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-11-01 18:53:50 -0400
commitdc1303d5d1e04ec63b4a5776909cf007fb8fdfe6 (patch)
tree9617fe3444faf78073e7d11976127e31258a71fa /CMakeLists.txt
downloadjdtalkc-dc1303d5d1e04ec63b4a5776909cf007fb8fdfe6.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..c6f5d02
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,6 @@
+cmake_minimum_required(VERSION 2.8)
+project(jdtalkc C)
+
+set(CMAKE_C_STANDARD 99)
+
+add_executable(jdtalkc main.c)