You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ts...@apache.org on 2020/02/09 20:19:45 UTC

[logging-log4cxx] 05/49: Disable building tests by default to conform with vcpkg guidelines

This is an automated email from the ASF dual-hosted git repository.

tschoening pushed a commit to branch ghpr_14_replace-ant-build-with-cmake
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git

commit 80a9fdbe6ea276529ce1abd1e470f86350b4bdf0
Author: Stephen Webb <st...@sabreautonomous.com.au>
AuthorDate: Sun Oct 13 17:24:01 2019 +1100

    Disable building tests by default to conform with vcpkg guidelines
---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index acd270a..b28b810 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@ find_path(APR_UTIL_INCLUDE_DIR apu.h PATH_SUFFIXES apr-1)
 find_library(APR_UTIL_LIBRARIES NAMES libaprutil-1 aprutil-1)
 
 ## Testing
-option(TEST_LOG4CXX "Build log4cxx tests" ON)
+option(TEST_LOG4CXX "Build log4cxx tests" OFF)
 if(TEST_LOG4CXX)
   enable_testing()
 endif()