summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-02-20 11:01:16 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-02-20 11:01:16 +0530
commit44f9f648bc9de9d2e9a1054161a223cadd7c362d (patch)
tree75002650abc2b92ea93e74f701eaf6e30f21a136 /CMakeLists.txt
hello world
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..8691b53
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,8 @@
+cmake_minimum_required(VERSION 3.10)
+project(Gacrux LANGUAGES C)
+
+set(SOURCES
+ src/main.c
+)
+
+add_executable(gacrux ${SOURCES})