1 file(GLOB test_headers [a-z]*.h)
2 file(GLOB test_sources [a-z]*.cpp)
3 file(GLOB test_old_api_sources old-api/[a-z]*.cpp)
5 list(APPEND test_sources ${test_old_api_sources})
7 include_directories(${YAML_CPP_SOURCE_DIR}/test)
9 add_executable(run-tests
13 target_link_libraries(run-tests yaml-cpp)
15 add_test(yaml-reader-test run-tests)