subrepo: subdir: "xo-printjson" merged: "c5c01502" upstream: origin: "git@github.com:Rconybea/xo-printjson.git" branch: "main" commit: "c5c01502" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
10 lines
303 B
CMake
10 lines
303 B
CMake
# build unittest printjson/utest
|
|
|
|
set(SELF_EXE utest.printjson)
|
|
set(SELF_SRCS printjson_utest_main.cpp PrintJson.test.cpp)
|
|
|
|
xo_add_utest_executable(${SELF_EXE} ${SELF_SRCS})
|
|
xo_self_dependency(${SELF_EXE} printjson)
|
|
xo_external_target_dependency(${SELF_EXE} Catch2 Catch2::Catch2)
|
|
|
|
# end CMakeLists.txt
|