Revision 23801a03e63804d9d099c644e2c2fe4945d6d06b authored by Konrad Werys on 30 July 2019, 11:59:42 UTC, committed by Konrad Werys on 30 July 2019, 11:59:42 UTC
1 parent f475f45
gtest.cmake~
# based on http://david-grs.github.io/cpp-clang-travis-cmake-gtest-coveralls-appveyor/
set(GOOGLETEST_ROOT thirdParty/googletest/googletest CACHE STRING "Google Test source root")
include_directories(SYSTEM
${PROJECT_SOURCE_DIR}/${GOOGLETEST_ROOT}
${PROJECT_SOURCE_DIR}/${GOOGLETEST_ROOT}/include
)
set(GOOGLETEST_SOURCES
${PROJECT_SOURCE_DIR}/${GOOGLETEST_ROOT}/src/gtest-all.cc
${PROJECT_SOURCE_DIR}/${GOOGLETEST_ROOT}/src/gtest_main.cc
)
foreach(_source ${GOOGLETEST_SOURCES})
set_source_files_properties(${_source} PROPERTIES GENERATED 1)
endforeach()
add_library(gtest ${GOOGLETEST_SOURCES})

Computing file changes ...