summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorAbdellah El Morabit <nsrddyn@gmail.com>2025-01-30 21:07:16 +0100
committerAbdellah El Morabit <nsrddyn@gmail.com>2025-01-30 21:08:17 +0100
commit8650f2d46dc6df62fcf70d4b769746987e748830 (patch)
tree89223d3e6b957f47da4e15f40949a26c18d48539 /CMakeLists.txt
Learning about getting the commands history and
actually saving them, having trouble doing it in c
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..2793ca2
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,6 @@
+cmake_minimum_required(VERSION 3.30)
+project(UnixShell C)
+
+set(CMAKE_C_STANDARD 11)
+
+add_executable(UnixShell main.c)