From 707abfb94145b8c82542b97ccc5492085eee1bba Mon Sep 17 00:00:00 2001 From: Teebonne <80053070+Teebonne@users.noreply.github.com> Date: Tue, 30 Aug 2022 00:45:23 +0100 Subject: [PATCH] option OFF by default for building test executable It seems better to leave the option OFF by default for building test executable --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 04be58e9..a9ed23fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ endif() # Optional components -option(TESTS "Set to OFF to skip building test executable (in ./tests)" ON) +option(TESTS "Set to ON to build test executable (in ./tests)" OFF) option(SAMPLES "Set to ON to build executable code samples (in ./samples)" OFF) option(BENCHMARKS "Set to ON to build performance benchmarks (in ./benchmarks)" OFF) option(PYTHON "Set to ON to build Arrow conversion functions (in ./python)" OFF)