Disable building tests by default to conform with vcpkg guidelines
diff --git a/CMakeLists.txt b/CMakeLists.txt
index acd270a..b28b810 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@
 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()