16 lines
366 B
CMake
16 lines
366 B
CMake
add_executable(StreamingJsonParserTest
|
|
StreamingJsonParserTest.cpp
|
|
${REPO_ROOT}/lib/JsonParser/StreamingJsonParser.cpp
|
|
)
|
|
|
|
target_include_directories(StreamingJsonParserTest PRIVATE
|
|
${REPO_ROOT}/lib/JsonParser
|
|
)
|
|
|
|
target_link_libraries(StreamingJsonParserTest PRIVATE
|
|
crosspoint_test_common
|
|
GTest::gtest_main
|
|
)
|
|
|
|
gtest_discover_tests(StreamingJsonParserTest)
|