diff options
| author | Lexi Winter <lexi@le-fay.org> | 2025-06-21 12:20:34 +0100 |
|---|---|---|
| committer | Lexi Winter <lexi@le-fay.org> | 2025-06-21 12:20:34 +0100 |
| commit | 8a36eb498e1a1c2cf2e886356faa4ce67e52e874 (patch) | |
| tree | 92e44b4d4ddef68ff91d35f44ca57a9d45e7f879 /CMakeLists.txt | |
| download | nihil-8a36eb498e1a1c2cf2e886356faa4ce67e52e874.tar.gz nihil-8a36eb498e1a1c2cf2e886356faa4ce67e52e874.tar.bz2 | |
initial commit
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..7c12885 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,18 @@ +# This source code is released into the public domain. + +cmake_minimum_required(VERSION 3.28) + +project(libexi) + +set(CMAKE_CXX_STANDARD 26) + +add_compile_options(-W) +add_compile_options(-Wall) +add_compile_options(-Wextra) +add_compile_options(-Werror) +add_compile_options(-Wpedantic) + +add_subdirectory(modules) +add_subdirectory(tests) + +enable_testing() |
