aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.core/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'nihil.core/CMakeLists.txt')
-rw-r--r--nihil.core/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/nihil.core/CMakeLists.txt b/nihil.core/CMakeLists.txt
new file mode 100644
index 0000000..2a7b3e2
--- /dev/null
+++ b/nihil.core/CMakeLists.txt
@@ -0,0 +1,12 @@
+# This source code is released into the public domain.
+
+add_library(nihil.core STATIC)
+target_include_directories(nihil.core PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
+target_sources(nihil.core
+ PUBLIC FILE_SET modules TYPE CXX_MODULES FILES
+ nihil.core.ccm
+ errc.ccm
+
+ PRIVATE
+ errc.cc
+)