rapidjson/test/unittest/CMakeLists.txt

18 lines
441 B
CMake
Raw Normal View History

set(UNITTEST_SOURCES
documenttest.cpp
encodedstreamtest.cpp
encodingstest.cpp
filestreamtest.cpp
jsoncheckertest.cpp
readertest.cpp
unittest.cpp
unittest.h
valuetest.cpp
writertest.cpp)
add_executable(unittest ${UNITTEST_SOURCES})
target_link_libraries(unittest ${TEST_LIBRARIES})
add_test(NAME unittest
COMMAND ${CMAKE_CURRENT_BINARY_DIR}/unittest
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)