diff options
| author | Abdellah El Morabit <nsrddyn@gmail.com> | 2025-01-30 21:07:16 +0100 |
|---|---|---|
| committer | Abdellah El Morabit <nsrddyn@gmail.com> | 2025-01-30 21:08:17 +0100 |
| commit | 8650f2d46dc6df62fcf70d4b769746987e748830 (patch) | |
| tree | 89223d3e6b957f47da4e15f40949a26c18d48539 /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.txt | 6 |
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) |
