From 14532af0da4fa303e327d88f7c844558ee58a326 Mon Sep 17 00:00:00 2001 From: Iason Date: Thu, 6 Feb 2020 14:06:39 +0100 Subject: [PATCH] Turned off the building of tests and examples. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f697656..9e69422 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,8 +6,8 @@ if (NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release") endif() -option(FEA_BUILD_UNIT_TESTS "Build unit tests" ON) -option(FEA_BUILD_EXAMPLES "Build examples" ON) +option(FEA_BUILD_UNIT_TESTS "Build unit tests" OFF) +option(FEA_BUILD_EXAMPLES "Build examples" OFF) option(FEA_BUILD_GUI "Build Qt GUI" OFF) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")