aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.core/CMakeLists.txt
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-06-29 17:16:22 +0100
committerLexi Winter <lexi@le-fay.org>2025-06-29 17:16:22 +0100
commit4fa6821e0645ff61a9380cd090abff472205c630 (patch)
treebd95f13b2dc0bd9692681f50c365d2914a520bfe /nihil.core/CMakeLists.txt
parente5180acf5f2dfac788e8c12886095ed1ac66fae5 (diff)
downloadnihil-4fa6821e0645ff61a9380cd090abff472205c630.tar.gz
nihil-4fa6821e0645ff61a9380cd090abff472205c630.tar.bz2
add clang-tidy support
Diffstat (limited to 'nihil.core/CMakeLists.txt')
-rw-r--r--nihil.core/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/nihil.core/CMakeLists.txt b/nihil.core/CMakeLists.txt
new file mode 100644
index 0000000..4564640
--- /dev/null
+++ b/nihil.core/CMakeLists.txt
@@ -0,0 +1,11 @@
+# This source code is released into the public domain.
+
+add_library(nihil.core STATIC)
+target_sources(nihil.core
+ PUBLIC FILE_SET modules TYPE CXX_MODULES FILES
+ nihil.core.ccm
+ errc.ccm
+
+ PRIVATE
+ errc.cc
+)