MauganRa

Results 1 comments of MauganRa

Googles recommended way to include Google Test: https://github.com/google/googletest/blob/master/googletest/README.md Applied to GUnit: New file CMakeLists.txt.in: ``` cmake_minimum_required(VERSION 2.8.2) project(gunit-download NONE) include(ExternalProject) ExternalProject_Add(GUnit GIT_REPOSITORY https://github.com/cpp-testing/GUnit.git GIT_TAG master SOURCE_DIR "${CMAKE_BINARY_DIR}/gunit-src" BINARY_DIR "${CMAKE_BINARY_DIR}/gunit-build" CONFIGURE_COMMAND...