aboutsummaryrefslogtreecommitdiffstats
path: root/tests/CMakeLists.txt
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-06-21 12:20:34 +0100
committerLexi Winter <lexi@le-fay.org>2025-06-21 12:20:34 +0100
commit8a36eb498e1a1c2cf2e886356faa4ce67e52e874 (patch)
tree92e44b4d4ddef68ff91d35f44ca57a9d45e7f879 /tests/CMakeLists.txt
downloadnihil-8a36eb498e1a1c2cf2e886356faa4ce67e52e874.tar.gz
nihil-8a36eb498e1a1c2cf2e886356faa4ce67e52e874.tar.bz2
initial commit
Diffstat (limited to 'tests/CMakeLists.txt')
-rw-r--r--tests/CMakeLists.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
new file mode 100644
index 0000000..c6788a3
--- /dev/null
+++ b/tests/CMakeLists.txt
@@ -0,0 +1,21 @@
+# This source code is released into the public domain.
+
+add_executable(nihil.test
+ ctype.cc
+ fd.cc
+ generator.cc
+ generic_error.cc
+ getenv.cc
+ guard.cc
+ tabulate.cc)
+
+target_link_libraries(nihil.test PRIVATE
+ nihil
+ Catch2::Catch2WithMain
+)
+
+find_package(Catch2 REQUIRED)
+
+include(CTest)
+include(Catch)
+catch_discover_tests(nihil.test)