aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.config/tests/CMakeLists.txt
blob: 1805f7fb0aa6d8c2440150674385702d9f6240dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This source code is released into the public domain.

add_executable(nihil.config.test
	string.cc
)

target_link_libraries(nihil.config.test PRIVATE
	nihil.config
	Catch2::Catch2WithMain)

find_package(Catch2 REQUIRED)

include(CTest)
include(Catch)
catch_discover_tests(nihil.config.test)