diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-03 11:01:00 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-03 11:01:00 +0200 |
commit | 690c853da8b50faa366ff42d9b32b32c841e7211 (patch) | |
tree | a2343570435e75bfd37025c3cedff3aceb033a53 /CMakeLists.txt | |
parent | ff078630f3420a03cf8d9432cc7a96f249db5573 (diff) |
more scaffolding
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..b471ea9 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required(VERSION 3.29) + +set(CMAKE_C_STANDARD 11) +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_EXPORT_COMPILE_COMMANDS 1) + +# # enable debug features +# set(CMAKE_BUILD_TYPE Debug) +# add_compile_definitions(DEBUG) + +project(main C CXX) + +add_executable(main + main.cpp +) + |