From f4136569125fb3b20db77591df4ce47ec731cf00 Mon Sep 17 00:00:00 2001 From: Rick Altherr Date: Tue, 9 Jan 2018 12:26:14 -0800 Subject: [PATCH] Disable tests by default No need to spend time building all the tests unless you specifically want them. To build them, run 'cmake -DPRJXRAY_BUILD_TESTING=ON ..' in the build directory. Signed-off-by: Rick Altherr --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fe8e0ee2..4a0bd664 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.5.0) project(prjxray) -option(PRJXRAY_BUILD_TESTING "" ON) +option(PRJXRAY_BUILD_TESTING "" OFF) set(CMAKE_CXX_STANDARD 14) add_compile_options(-Wall -Werror)