2014-03-23 23:26:02 -05:00
|
|
|
set(gtest_force_shared_crt ${MSVC_SHARED_RT} CACHE BOOL
|
|
|
|
|
"Use shared (DLL) run-time lib even when Google Test built as a static lib.")
|
2014-03-23 12:04:03 -05:00
|
|
|
add_subdirectory(gmock-1.7.0)
|
|
|
|
|
include_directories(gmock-1.7.0/gtest/include)
|
|
|
|
|
include_directories(gmock-1.7.0/include)
|
2014-03-22 19:06:46 -05:00
|
|
|
|
2014-03-23 23:56:17 -05:00
|
|
|
if(WIN32 AND BUILD_SHARED_LIBS)
|
|
|
|
|
add_definitions("-DGTEST_LINKED_AS_SHARED_LIBRARY")
|
|
|
|
|
endif()
|
|
|
|
|
|
2014-03-22 19:15:49 -05:00
|
|
|
file(GLOB test_headers [a-z_]*.h)
|
2014-03-23 11:49:32 -05:00
|
|
|
file(GLOB test_sources [a-z_]*.cpp integration/[a-z_]*.cpp)
|
2012-05-19 01:16:54 -05:00
|
|
|
file(GLOB test_core_sources core/[a-z]*.cpp)
|
2011-09-10 18:02:07 -05:00
|
|
|
|
2012-05-19 01:16:54 -05:00
|
|
|
list(APPEND test_sources ${test_core_sources})
|
2009-10-27 14:38:53 +00:00
|
|
|
|
2011-09-10 18:05:35 -05:00
|
|
|
include_directories(${YAML_CPP_SOURCE_DIR}/test)
|
|
|
|
|
|
2009-10-27 14:38:53 +00:00
|
|
|
add_executable(run-tests
|
|
|
|
|
${test_sources}
|
|
|
|
|
${test_headers}
|
|
|
|
|
)
|
2014-03-23 12:04:03 -05:00
|
|
|
target_link_libraries(run-tests yaml-cpp gtest gmock)
|
2009-10-27 14:38:53 +00:00
|
|
|
|
2014-03-22 19:06:46 -05:00
|
|
|
#add_test(yaml-reader-test run-tests)
|