aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2023-04-21 16:48:12 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2023-04-21 16:48:12 -0400
commitae61e8123c0e83648c238b78e19131049c5196b3 (patch)
tree3231b8de9e3e5e8f826697c79e21ccf88b966dfb /CMakeLists.txt
parent2b17c24820c86f4f49c3b89d5f6097a3bdb21601 (diff)
downloadwhatami-ae61e8123c0e83648c238b78e19131049c5196b3.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..61ff659
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,6 @@
+cmake_minimum_required(VERSION 3.2)
+project(whatami C)
+
+set(CMAKE_C_STANDARD 99)
+
+add_executable(whatami main.c)