blob: 13f30fa50d9ef1dd3b65878ed785f593d43d2c16 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# This source code is released into the public domain.
add_executable(nihil.ucl.test
emit.cc
parse.cc
object.cc
array.cc
boolean.cc
integer.cc
map.cc
real.cc
string.cc
)
target_link_libraries(nihil.ucl.test PRIVATE nihil.ucl Catch2::Catch2WithMain)
include(CTest)
include(Catch)
catch_discover_tests(nihil.ucl.test)
|