| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/math/boolector/files/ |
Upload File : |
--- CMakeLists.txt.orig 2019-12-02 22:50:20 UTC
+++ CMakeLists.txt
@@ -434,20 +434,24 @@ configure_file(
# Regression tests
# Get and configure google test
+if (BUILD_TESTING)
include(cmake/googletest.cmake)
fetch_googletest(
${PROJECT_SOURCE_DIR}/cmake
${PROJECT_BINARY_DIR}/googletest
)
-enable_testing()
+ enable_testing()
+endif(BUILD_TESTING)
#-----------------------------------------------------------------------------#
# Source directories
include_directories(src ${CMAKE_CURRENT_BINARY_DIR}/src)
add_subdirectory(src)
-add_subdirectory(test)
+if (BUILD_TESTING)
+ add_subdirectory(test)
+endif(BUILD_TESTING)
if(PYTHON)
add_subdirectory(src/api/python)
endif()