blob: 93559a7d75087e99614d590f28bc5a3f98c3c790 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# 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 nihil.ucl
Catch2::Catch2WithMain)
find_package(Catch2 REQUIRED)
include(CTest)
include(Catch)
catch_discover_tests(nihil.ucl.test)
|