aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.config/tests/CMakeLists.txt
blob: ffa60c39cdf680936fee6b1e728150875feb7455 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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)

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