diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 35 |
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() |
