summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2026-05-09 02:56:07 +0200
committerXavier Del Campo Romero <xavi92@disroot.org>2026-05-17 11:13:23 +0200
commit527c23b73c8dae16f02cca6f450edb7d8225f60f (patch)
tree6b2bfd9e8d814026d6d2c1839d8cfe1bcadc825c /CMakeLists.txt
downloadslcob-master.tar.gz
Add project skeletonHEADmaster
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..baec228
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,35 @@
+cmake_minimum_required(VERSION 3.5)
+project(slcob C)
+add_executable(${PROJECT_NAME}
+ call.c
+ cgen.c
+ display.c
+ div.c
+ errloc.c
+ exit.c
+ fn.c
+ gl.c
+ im.c
+ kw.c
+ lex.c
+ lit.c
+ lk.c
+ main.c
+ set.c
+ parse.c
+ pop.c
+ pr.c
+ push.c
+ sdup.c
+ stmt.c
+ storage.c
+ td.c
+ type.c
+ ws.c
+)
+
+target_compile_options(${PROJECT_NAME} PRIVATE -g -Wall -std=c99 -pedantic)
+
+if(CMAKE_BUILD_TYPE STREQUAL "Debug")
+ target_compile_options(${PROJECT_NAME} PRIVATE -Og)
+endif()