mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 04:41:16 +00:00

- Adds 'std=c++11' compiler flags - Replaces boost::type_traits with std::type_traits - Replaces boost::shared_ptr with std::shared_ptr - Replaces std::auto_ptr with std::unique_ptr - Replaces raw pointers with std::unique_ptr in ptr_vector, ptr_stack, and SettingChanges - Replaces boost::noncopyable with deleted copy and assignment operators - Replaces boost::next with std::next - Replaces boost::enable_if with std::enable_if - Replaces boost::is_convertible with std::is_convertible - Replaces ptrdiff_t with std::ptrdiff_t - Replaces boost::iterator_facade and boost::iterator_adaptor with std::iterator, borrowing the 'proxy reference' technique from boost - Removes Boost dependency from CMakeLists - Formats changed files using clang-format
35 lines
1.1 KiB
CMake
35 lines
1.1 KiB
CMake
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.")
|
|
add_subdirectory(gmock-1.7.0)
|
|
include_directories(SYSTEM gmock-1.7.0/gtest/include)
|
|
include_directories(SYSTEM gmock-1.7.0/include)
|
|
|
|
if(WIN32 AND BUILD_SHARED_LIBS)
|
|
add_definitions("-DGTEST_LINKED_AS_SHARED_LIBRARY")
|
|
endif()
|
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU" OR
|
|
"${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
|
|
set(yaml_test_flags "-Wno-c99-extensions -Wno-variadic-macros -Wno-sign-compare -std=c++11")
|
|
endif()
|
|
|
|
file(GLOB test_headers [a-z_]*.h)
|
|
file(GLOB test_sources [a-z_]*.cpp integration/[a-z_]*.cpp node/[a-z_]*.cpp)
|
|
file(GLOB test_new_api_sources new-api/[a-z]*.cpp)
|
|
|
|
list(APPEND test_sources ${test_new_api_sources})
|
|
add_sources(${test_sources} ${test_headers})
|
|
|
|
include_directories(${YAML_CPP_SOURCE_DIR}/test)
|
|
|
|
add_executable(run-tests
|
|
${test_sources}
|
|
${test_headers}
|
|
)
|
|
set_target_properties(run-tests PROPERTIES
|
|
COMPILE_FLAGS "${yaml_c_flags} ${yaml_cxx_flags} ${yaml_test_flags}"
|
|
)
|
|
target_link_libraries(run-tests yaml-cpp gmock)
|
|
|
|
add_test(yaml-test ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/run-tests)
|