From 44938918bf4b2dcdcf3fb4c1a54d33ef6e2ea128 Mon Sep 17 00:00:00 2001 From: Michael Tryby Date: Fri, 22 Mar 2019 11:59:59 -0400 Subject: [PATCH] Rolling back option to BUILD_TESTS BUILD_TESTING is defined within cmake when ctest module is included. Rolled back include(CTest) so we are going to define our own test option instead. --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b12e143..3349562 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ before_script: - cd $BUILD_HOME - cmake -DCMAKE_C_COMPILER=${CC} -DCMAKE_CXX_COMPILER=${CXX} - -DBUILD_TESTING=ON + -DBUILD_TESTS=ON -DBUILD_COVERAGE=ON .. script: diff --git a/appveyor.yml b/appveyor.yml index e234cd5..1d3f5ae 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -55,7 +55,7 @@ before_build: - mkdir %BUILD_HOME% - cd %BUILD_HOME% - cmake -G "%GENERATOR%" - -DBUILD_TESTING=ON + -DBUILD_TESTS=ON -DBOOST_ROOT="%BOOST_ROOT%" .. # run custom build script