1 ###############################################################################
2 # Top contributors (to current version):
3 # Aina Niemetz, Mathias Preiner, Gereon Kremer
5 # This file is part of the cvc5 project.
7 # Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
8 # in the top-level source directory and their institutional affiliations.
9 # All rights reserved. See the file COPYING in the top-level source
10 # directory for licensing information.
11 # #############################################################################
13 # The build system configuration.
16 cmake_minimum_required(VERSION 3.9)
18 #-----------------------------------------------------------------------------#
19 # Project configuration
23 include(GNUInstallDirs)
25 set(CVC5_MAJOR 1) # Major component of the version of cvc5.
26 set(CVC5_MINOR 0) # Minor component of the version of cvc5.
27 set(CVC5_RELEASE 0) # Release component of the version of cvc5.
29 # Extraversion component of the version of cvc5.
30 set(CVC5_EXTRAVERSION "-prerelease")
32 # Shared library versioning. Increment SOVERSION for every new cvc5 release.
35 # Full release string for cvc5.
37 set(CVC5_RELEASE_STRING
38 "${CVC5_MAJOR}.${CVC5_MINOR}.${CVC5_RELEASE}${CVC5_EXTRAVERSION}")
40 set(CVC5_RELEASE_STRING "${CVC5_MAJOR}.${CVC5_MINOR}${CVC5_EXTRAVERSION}")
43 set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
44 set(CMAKE_C_STANDARD 99)
45 set(CMAKE_CXX_STANDARD 17)
46 set(CMAKE_CXX_EXTENSIONS OFF)
47 set(CMAKE_CXX_STANDARD_REQUIRED ON)
48 set(CMAKE_CXX_VISIBILITY_PRESET hidden)
49 set(CMAKE_VISIBILITY_INLINES_HIDDEN 1)
51 # Generate compile_commands.json, which can be used for various code completion
53 set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
55 #-----------------------------------------------------------------------------#
58 # Required for FindGLPK since it sets CMAKE_REQUIRED_LIBRARIES
60 cmake_policy(SET CMP0075 NEW)
63 #-----------------------------------------------------------------------------#
64 # Tell CMake where to find our dependencies
67 list(APPEND CMAKE_PREFIX_PATH "${ABC_DIR}")
70 list(APPEND CMAKE_PREFIX_PATH "${GLPK_DIR}")
73 # By default the contrib/get-* scripts install dependencies to deps/install.
74 list(APPEND CMAKE_PREFIX_PATH "${PROJECT_SOURCE_DIR}/deps/install")
76 #-----------------------------------------------------------------------------#
80 #-----------------------------------------------------------------------------#
84 option(ENABLE_GPL "Enable GPL dependencies")
86 # General build options
88 # >> 3-valued: IGNORE ON OFF
89 # > allows to detect if set by user (default: IGNORE)
90 # > only necessary for options set for build types
91 cvc5_option(ENABLE_ASAN "Enable ASAN build")
92 cvc5_option(ENABLE_UBSAN "Enable UBSan build")
93 cvc5_option(ENABLE_TSAN "Enable TSan build")
94 cvc5_option(ENABLE_ASSERTIONS "Enable assertions")
95 cvc5_option(ENABLE_COMP_INC_TRACK
96 "Enable optimizations for incremental SMT-COMP tracks")
97 cvc5_option(ENABLE_DEBUG_SYMBOLS "Enable debug symbols")
98 cvc5_option(ENABLE_DUMPING "Enable dumping")
99 cvc5_option(ENABLE_MUZZLE "Suppress ALL non-result output")
100 cvc5_option(ENABLE_STATISTICS "Enable statistics")
101 cvc5_option(ENABLE_TRACING "Enable tracing")
102 cvc5_option(ENABLE_UNIT_TESTING "Enable unit testing")
103 cvc5_option(ENABLE_VALGRIND "Enable valgrind instrumentation")
104 cvc5_option(ENABLE_SHARED "Build as shared library")
105 cvc5_option(ENABLE_STATIC_BINARY
106 "Build static binaries with statically linked system libraries")
107 cvc5_option(ENABLE_AUTO_DOWNLOAD "Enable automatic download of dependencies")
108 # >> 2-valued: ON OFF
109 # > for options where we don't need to detect if set by user (default: OFF)
110 option(ENABLE_BEST "Enable dependencies known to give best performance")
111 option(ENABLE_COVERAGE "Enable support for gcov coverage testing")
112 option(ENABLE_DEBUG_CONTEXT_MM "Enable the debug context memory manager")
113 option(ENABLE_PROFILING "Enable support for gprof profiling")
115 # Optional dependencies
117 # >> 3-valued: IGNORE ON OFF
118 # > allows to detect if set by user (default: IGNORE)
119 # > only necessary for options set for ENABLE_BEST
120 cvc5_option(USE_ABC "Use ABC for AIG bit-blasting")
121 cvc5_option(USE_CADICAL "Use CaDiCaL SAT solver")
122 cvc5_option(USE_CLN "Use CLN instead of GMP")
123 cvc5_option(USE_CRYPTOMINISAT "Use CryptoMiniSat SAT solver")
124 cvc5_option(USE_GLPK "Use GLPK simplex solver")
125 cvc5_option(USE_KISSAT "Use Kissat SAT solver")
126 cvc5_option(USE_EDITLINE "Use Editline for better interactive support")
127 # >> 2-valued: ON OFF
128 # > for options where we don't need to detect if set by user (default: OFF)
129 option(USE_POLY "Use LibPoly for polynomial arithmetic")
130 option(USE_SYMFPU "Use SymFPU for floating point support")
131 option(USE_PYTHON2 "Force Python 2 (deprecated)")
133 # Custom install directories for dependencies
134 # If no directory is provided by the user, we first check if the dependency was
135 # installed via the corresponding contrib/get-* script and if not found, we
136 # check the intalled system version. If the user provides a directory we
137 # immediately fail if the dependency was not found at the specified location.
138 set(ABC_DIR "" CACHE STRING "Set ABC install directory")
139 set(GLPK_DIR "" CACHE STRING "Set GLPK install directory")
141 # Prepend binaries with prefix on make install
142 set(PROGRAM_PREFIX "" CACHE STRING "Program prefix on make install")
144 # Supported language bindings based on new C++ API
145 option(BUILD_BINDINGS_PYTHON "Build Python bindings based on new C++ API ")
146 option(BUILD_BINDINGS_JAVA "Build Java bindings based on new C++ API ")
149 option(BUILD_LIB_ONLY "Only build the library")
152 cvc5_option(BUILD_DOCS "Build Api documentation")
154 #-----------------------------------------------------------------------------#
155 # Internal cmake variables
157 set(OPTIMIZATION_LEVEL 3)
160 #-----------------------------------------------------------------------------#
161 # Determine number of threads available, used to configure (default) parallel
162 # execution of custom test targets (can be overriden with ARGS=-jN).
164 include(ProcessorCount)
165 ProcessorCount(CTEST_NTHREADS)
166 if(CTEST_NTHREADS EQUAL 0)
167 set(CTEST_NTHREADS 1)
170 #-----------------------------------------------------------------------------#
173 # Note: Module CodeCoverage requires the name of the debug build to conform
174 # to cmake standards (first letter uppercase).
175 set(BUILD_TYPES Production Debug Testing Competition)
177 if(ENABLE_ASAN OR ENABLE_UBSAN OR ENABLE_TSAN)
178 set(CMAKE_BUILD_TYPE Debug)
181 # Set the default build type to Production
182 if(NOT CMAKE_BUILD_TYPE)
184 Production CACHE STRING "Options are: ${BUILD_TYPES}" FORCE)
185 # Provide drop down menu options in cmake-gui
186 set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS ${BUILD_TYPES})
189 # Check if specified build type is valid.
190 list(FIND BUILD_TYPES ${CMAKE_BUILD_TYPE} FOUND_BUILD_TYPE)
191 if(${FOUND_BUILD_TYPE} EQUAL -1)
193 "'${CMAKE_BUILD_TYPE}' is not a valid build type. "
194 "Available builds are: ${BUILD_TYPES}")
197 message(STATUS "Building ${CMAKE_BUILD_TYPE} build")
198 include(Config${CMAKE_BUILD_TYPE})
200 #-----------------------------------------------------------------------------#
203 add_check_c_cxx_flag("-O${OPTIMIZATION_LEVEL}")
204 add_check_c_cxx_flag("-Wall")
205 add_check_c_cxx_flag("-Wno-unused-private-field")
206 add_check_c_flag("-fexceptions")
207 add_check_cxx_flag("-Wsuggest-override")
208 add_check_cxx_flag("-Wnon-virtual-dtor")
209 add_check_c_cxx_flag("-Wimplicit-fallthrough")
210 add_check_c_cxx_flag("-Wshadow")
212 # Temporarily disable -Wclass-memaccess to suppress 'no trivial copy-assignment'
213 # cdlist.h warnings. Remove when fixed.
214 add_check_cxx_flag("-Wno-class-memaccess")
217 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--stack,100000000")
220 #-----------------------------------------------------------------------------#
221 # Use ld.gold if available
223 execute_process(COMMAND ${CMAKE_C_COMPILER}
225 -Wl,--version ERROR_QUIET OUTPUT_VARIABLE LD_VERSION)
226 if ("${LD_VERSION}" MATCHES "GNU gold")
227 string(APPEND CMAKE_EXE_LINKER_FLAGS " -fuse-ld=gold")
228 string(APPEND CMAKE_SHARED_LINKER_FLAGS " -fuse-ld=gold")
229 string(APPEND CMAKE_MODULE_LINKER_FLAGS " -fuse-ld=gold")
230 message(STATUS "Using GNU gold linker.")
233 #-----------------------------------------------------------------------------#
234 # Option defaults (three-valued options (cvc5_option(...)))
236 # These options are only set if their value is IGNORE. Otherwise, the user
237 # already set the option, which we don't want to overwrite.
239 if(ENABLE_STATIC_BINARY)
240 cvc5_set_option(ENABLE_SHARED OFF)
242 cvc5_set_option(ENABLE_SHARED ON)
245 #-----------------------------------------------------------------------------#
247 # Only enable unit testing if assertions are enabled. Otherwise, unit tests
248 # that expect AssertionException to be thrown will fail.
249 if(NOT ENABLE_ASSERTIONS)
250 message(STATUS "Disabling unit tests since assertions are disabled.")
251 set(ENABLE_UNIT_TESTING OFF)
254 #-----------------------------------------------------------------------------#
255 # Shared/static libraries
257 # This needs to be set before any find_package(...) command since we want to
258 # search for static libraries with suffix .a.
261 set(BUILD_SHARED_LIBS ON)
262 if(ENABLE_STATIC_BINARY)
263 set(ENABLE_STATIC_BINARY OFF)
264 message(STATUS "Disabling static binary since shared build is enabled.")
267 # Set visibility to default if unit tests are enabled
268 if(ENABLE_UNIT_TESTING)
269 set(CMAKE_CXX_VISIBILITY_PRESET default)
270 set(CMAKE_VISIBILITY_INLINES_HIDDEN 0)
273 # Embed the installation prefix as an RPATH in the executable such that the
274 # linker can find our libraries (such as libcvc5parser) when executing the
275 # cvc5 binary. This is for example useful when installing cvc5 with a custom
276 # prefix on macOS (e.g. when using homebrew in a non-standard directory). If
277 # we do not set this option, then the linker will not be able to find the
278 # required libraries when trying to run cvc5.
280 # Also embed the installation prefix of the installed contrib libraries as an
281 # RPATH. This allows to install a dynamically linked binary that depends on
282 # dynamically linked libraries. This is dangerous, as the installed binary
283 # breaks if the contrib library is removed or changes in other ways, we thus
284 # print a big warning and only allow if installing to a custom installation
287 # More information on RPATH in CMake:
288 # https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/RPATH-handling
289 set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR};${PROJECT_SOURCE_DIR}/deps/install/lib")
291 # When building statically, we *only* want static archives/libraries
293 set(CMAKE_FIND_LIBRARY_SUFFIXES .lib .a)
295 set(CMAKE_FIND_LIBRARY_SUFFIXES .a)
297 set(BUILD_SHARED_LIBS OFF)
298 cvc5_set_option(ENABLE_STATIC_BINARY ON)
300 # Never build unit tests as static binaries, otherwise we'll end up with
301 # ~300MB per unit test.
302 if(ENABLE_UNIT_TESTING)
303 message(STATUS "Disabling unit tests since static build is enabled.")
304 set(ENABLE_UNIT_TESTING OFF)
307 if (BUILD_BINDINGS_PYTHON)
308 message(FATAL_ERROR "Building Python bindings is not possible "
309 "when building statically")
313 #-----------------------------------------------------------------------------#
314 # Enable the ctest testing framework
316 # This needs to be enabled here rather than in subdirectory test in order to
317 # allow calling ctest from the root build directory.
320 #-----------------------------------------------------------------------------#
321 # Check options, find packages and configure build.
324 find_package(PythonInterp 2.7 REQUIRED)
326 find_package(PythonInterp 3 REQUIRED)
329 find_package(GMP 6.1 REQUIRED)
332 # -fsanitize=address requires CMAKE_REQUIRED_FLAGS to be explicitely set,
333 # otherwise the -fsanitize=address check will fail while linking.
334 set(CMAKE_REQUIRED_FLAGS -fsanitize=address)
335 add_required_c_cxx_flag("-fsanitize=address")
336 unset(CMAKE_REQUIRED_FLAGS)
337 add_required_c_cxx_flag("-fno-omit-frame-pointer")
338 add_check_c_cxx_flag("-fsanitize-recover=address")
342 add_required_c_cxx_flag("-fsanitize=undefined")
343 add_definitions(-DCVC5_USE_UBSAN)
347 # -fsanitize=thread requires CMAKE_REQUIRED_FLAGS to be explicitely set,
348 # otherwise the -fsanitize=thread check will fail while linking.
349 set(CMAKE_REQUIRED_FLAGS -fsanitize=thread)
350 add_required_c_cxx_flag("-fsanitize=thread")
351 unset(CMAKE_REQUIRED_FLAGS)
354 if(ENABLE_ASSERTIONS)
355 add_definitions(-DCVC5_ASSERTIONS)
357 add_definitions(-DNDEBUG)
361 include(CodeCoverage)
362 APPEND_COVERAGE_COMPILER_FLAGS()
363 add_definitions(-DCVC5_COVERAGE)
364 # Note: The ctest command returns a non-zero exit code if tests fail or run
365 # into a timeout. As a consequence, the coverage report is not generated. To
366 # prevent this we always return with exit code 0 after the ctest command has
368 setup_target_for_coverage_gcovr_html(
371 ctest -j${CTEST_NTHREADS} -LE "example"
372 --output-on-failure $$ARGS || exit 0
377 if(ENABLE_DEBUG_CONTEXT_MM)
378 add_definitions(-DCVC5_DEBUG_CONTEXT_MEMORY_MANAGER)
381 if(ENABLE_DEBUG_SYMBOLS)
382 add_check_c_cxx_flag("-ggdb3")
385 if(ENABLE_COMP_INC_TRACK)
386 add_definitions(-DCVC5_SMTCOMP_APPLICATION_TRACK)
390 add_definitions(-DCVC5_MUZZLE)
394 add_definitions(-DCVC5_DUMPING)
398 add_definitions(-DCVC5_PROFILING)
399 add_check_c_cxx_flag("-pg")
403 add_definitions(-DCVC5_TRACING)
406 if(ENABLE_STATISTICS)
407 add_definitions(-DCVC5_STATISTICS_ON)
411 find_package(Valgrind REQUIRED)
412 add_definitions(-DCVC5_VALGRIND)
416 find_package(ABC REQUIRED)
417 add_definitions(-DCVC5_USE_ABC ${ABC_ARCH_FLAGS})
421 find_package(CaDiCaL REQUIRED)
422 add_definitions(-DCVC5_USE_CADICAL)
426 set(GPL_LIBS "${GPL_LIBS} cln")
427 find_package(CLN 1.2.2 REQUIRED)
428 set(CVC5_USE_CLN_IMP 1)
429 set(CVC5_USE_GMP_IMP 0)
431 set(CVC5_USE_CLN_IMP 0)
432 set(CVC5_USE_GMP_IMP 1)
435 if(USE_CRYPTOMINISAT)
436 # CryptoMiniSat requires pthreads support
437 set(THREADS_PREFER_PTHREAD_FLAG ON)
438 find_package(Threads REQUIRED)
439 if(THREADS_HAVE_PTHREAD_ARG)
440 add_c_cxx_flag(-pthread)
442 find_package(CryptoMiniSat 5.8 REQUIRED)
443 add_definitions(-DCVC5_USE_CRYPTOMINISAT)
447 set(GPL_LIBS "${GPL_LIBS} glpk")
448 find_package(GLPK REQUIRED)
449 add_definitions(-DCVC5_USE_GLPK)
453 find_package(Kissat REQUIRED)
454 add_definitions(-DCVC5_USE_KISSAT)
458 find_package(Poly REQUIRED)
459 add_definitions(-DCVC5_USE_POLY)
460 set(CVC5_USE_POLY_IMP 1)
462 set(CVC5_USE_POLY_IMP 0)
466 find_package(Editline REQUIRED)
467 set(HAVE_LIBEDITLINE 1)
468 if(Editline_COMPENTRY_FUNC_RETURNS_CHARPTR)
469 set(EDITLINE_COMPENTRY_FUNC_RETURNS_CHARP 1)
474 find_package(SymFPU REQUIRED)
475 add_definitions(-DCVC5_USE_SYMFPU)
476 set(CVC5_USE_SYMFPU 1)
478 set(CVC5_USE_SYMFPU 0)
484 "Bad configuration detected: BSD-licensed code only, but also requested "
485 "GPLed libraries: ${GPL_LIBS}")
490 #-----------------------------------------------------------------------------#
491 # Provide targets to inspect iwyu suggestions
495 #-----------------------------------------------------------------------------#
497 include(ConfigureCvc5)
498 if(NOT ENABLE_SHARED)
499 set(CVC5_STATIC_BUILD ON)
502 #-----------------------------------------------------------------------------#
505 add_subdirectory(src)
506 add_subdirectory(test)
508 if(BUILD_BINDINGS_PYTHON)
509 set(BUILD_BINDINGS_PYTHON_VERSION ${PYTHON_VERSION_MAJOR})
510 add_subdirectory(src/api/python)
513 if(BUILD_BINDINGS_JAVA)
514 add_subdirectory(src/api/java)
515 message(WARNING "Java API is currently under development.")
519 add_subdirectory(docs)
522 #-----------------------------------------------------------------------------#
523 # Package configuration
525 # Export cvc5 targets to support find_package(cvc5) in other cmake projects.
527 include(CMakePackageConfigHelpers)
529 # If we install a dynamically linked binary that also uses dynamically used
530 # libraries from deps/install/lib, we need to be cautious. Changing these
531 # shared libraries from deps/install/lib most probably breaks the binary.
532 # We only allow such an installation for custom installation prefixes
533 # (in the assumption that only reasonably experienced users use this and
534 # also that custom installation prefixes are not used for longer periods of
535 # time anyway). Also, we print a big warning with further instructions.
536 if(NOT ENABLE_STATIC_BINARY)
537 # Get the libraries that cvc5 links against
538 get_target_property(libs cvc5 INTERFACE_LINK_LIBRARIES)
539 set(LIBS_SHARED_FROM_DEPS "")
541 # Filter out those that are linked dynamically and come from deps/install
542 if(lib MATCHES ".*/deps/install/lib/.*\.so")
543 list(APPEND LIBS_SHARED_FROM_DEPS ${lib})
546 list(LENGTH LIBS_SHARED_FROM_DEPS list_len)
547 # Check if we actually use such "dangerous" libraries
548 if(list_len GREATER 0)
549 # Print a generic warning
550 install(CODE "message(WARNING \"You are installing a dynamically linked \
551 binary of cvc5 which may be a problem if you are using any dynamically \
552 linked third-party library that you obtained through one of the \
553 contrib/get-xxx scripts. The binary uses the rpath mechanism to find these \
554 locally, hence executing such a contrib script removing the \
555 \\\"deps/install\\\" folder most probably breaks the installed binary! \
556 Consider installing the dynamically linked dependencies on your system \
557 manually or link cvc5 statically.\")")
558 # Print the libraries in question
559 foreach(lib ${LIBS_SHARED_FROM_DEPS})
560 install(CODE "message(WARNING \"The following library is used by the cvc5 binary: ${lib}\")")
562 # Check if we use a custom installation prefix
563 if(CMAKE_INSTALL_PREFIX STREQUAL "/usr/local")
564 install(CODE "message(FATAL_ERROR \"To avoid installing a \
565 soon-to-be-broken binary, system-wide installation is disabled if the \
566 binary depends on locally-built shared libraries.\")")
568 install(CODE "message(WARNING \"You have selected a custom install \
569 directory ${CMAKE_INSTALL_PREFIX}, so we expect you understood the \
570 previous warning and know what you are doing.\")")
575 install(EXPORT cvc5-targets
576 FILE cvc5Targets.cmake
578 DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/cvc5)
580 configure_package_config_file(
581 ${CMAKE_SOURCE_DIR}/cmake/cvc5Config.cmake.in
582 ${CMAKE_BINARY_DIR}/cmake/cvc5Config.cmake
583 INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/cvc5
584 PATH_VARS CMAKE_INSTALL_LIBDIR
587 write_basic_package_version_file(
588 ${CMAKE_CURRENT_BINARY_DIR}/cvc5ConfigVersion.cmake
589 VERSION ${CVC5_RELEASE_STRING}
590 COMPATIBILITY ExactVersion
594 ${CMAKE_BINARY_DIR}/cmake/cvc5Config.cmake
595 ${CMAKE_BINARY_DIR}/cvc5ConfigVersion.cmake
596 DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/cvc5
600 #-----------------------------------------------------------------------------#
601 # Print build configuration
606 set(Green "${Esc}[32m")
607 set(Blue "${Esc}[1;34m")
608 set(ResetColor "${Esc}[m")
611 # Convert build type to lower case.
612 string(TOLOWER ${CMAKE_BUILD_TYPE} CVC5_BUILD_PROFILE_STRING)
614 # Get all definitions added via add_definitions.
615 get_directory_property(CVC5_DEFINITIONS COMPILE_DEFINITIONS)
616 string(REPLACE ";" " " CVC5_DEFINITIONS "${CVC5_DEFINITIONS}")
619 print_info("cvc5 ${CVC5_RELEASE_STRING}")
621 if(ENABLE_COMP_INC_TRACK)
622 print_config("Build profile " "${CVC5_BUILD_PROFILE_STRING} (incremental)")
624 print_config("Build profile " "${CVC5_BUILD_PROFILE_STRING}")
627 print_config("GPL " ${ENABLE_GPL})
628 print_config("Best configuration " ${ENABLE_BEST})
630 print_config("Assertions " ${ENABLE_ASSERTIONS})
631 print_config("Debug symbols " ${ENABLE_DEBUG_SYMBOLS})
632 print_config("Debug context mem mgr " ${ENABLE_DEBUG_CONTEXT_MM})
634 print_config("Dumping " ${ENABLE_DUMPING})
635 print_config("Muzzle " ${ENABLE_MUZZLE})
636 print_config("Statistics " ${ENABLE_STATISTICS})
637 print_config("Tracing " ${ENABLE_TRACING})
639 print_config("ASan " ${ENABLE_ASAN})
640 print_config("UBSan " ${ENABLE_UBSAN})
641 print_config("TSan " ${ENABLE_TSAN})
642 print_config("Coverage (gcov) " ${ENABLE_COVERAGE})
643 print_config("Profiling (gprof) " ${ENABLE_PROFILING})
644 print_config("Unit tests " ${ENABLE_UNIT_TESTING})
645 print_config("Valgrind " ${ENABLE_VALGRIND})
647 print_config("Shared libs " ${ENABLE_SHARED})
648 print_config("Static binary " ${ENABLE_STATIC_BINARY})
649 print_config("Python bindings " ${BUILD_BINDINGS_PYTHON})
650 print_config("Java bindings " ${BUILD_BINDINGS_JAVA})
651 print_config("Python2 " ${USE_PYTHON2})
653 print_config("ABC " ${USE_ABC})
654 print_config("CaDiCaL " ${USE_CADICAL})
655 print_config("CryptoMiniSat " ${USE_CRYPTOMINISAT})
656 print_config("GLPK " ${USE_GLPK})
657 print_config("Kissat " ${USE_KISSAT})
658 print_config("LibPoly " ${USE_POLY})
660 print_config("Build libcvc5 only " ${BUILD_LIB_ONLY})
663 print_config("MP library " "cln")
665 print_config("MP library " "gmp")
667 print_config("Editline " ${USE_EDITLINE})
668 print_config("SymFPU " ${USE_SYMFPU})
670 print_config("Api docs " ${BUILD_DOCS})
673 print_config("ABC dir " ${ABC_DIR})
676 print_config("GLPK dir " ${GLPK_DIR})
679 print_config("CPPLAGS (-D...)" "${CVC5_DEFINITIONS}")
680 print_config("CXXFLAGS " "${CMAKE_CXX_FLAGS}")
681 print_config("CFLAGS " "${CMAKE_C_FLAGS}")
682 print_config("Linker flags " "${CMAKE_EXE_LINKER_FLAGS}")
684 print_config("Install prefix " "${CMAKE_INSTALL_PREFIX}")
689 "${Blue}cvc5 license: "
690 "${Yellow}GPLv3 (due to optional libraries; see below)${ResetColor}"
693 "Please note that cvc5 will be built against the following GPLed libraries:"
697 "As these libraries are covered under the GPLv3, so is this build of cvc5."
699 "cvc5 is also available to you under the terms of the (modified) BSD license."
701 "If you prefer to license cvc5 under those terms, please configure cvc5 to"
703 "disable all optional GPLed library dependencies (-DENABLE_BSD_ONLY=ON)."
707 "${Blue}cvc5 license:${ResetColor} modified BSD"
710 "Note that this configuration is NOT built against any GPL'ed libraries, so"
712 "it is covered by the (modified) BSD license. This is, however, not the best"
714 "performing configuration of cvc5. To build against GPL'ed libraries which"
716 "improve cvc5's performance, re-configure with '-DENABLE_GPL -DENABLE_BEST'."
720 if("${CMAKE_GENERATOR}" STREQUAL "Ninja")
721 set(BUILD_COMMAND_NAME "ninja")
723 set(BUILD_COMMAND_NAME "make")
727 message("Now just type '${BUILD_COMMAND_NAME}', "
728 "followed by '${BUILD_COMMAND_NAME} check' "
729 "or '${BUILD_COMMAND_NAME} install'.")