mirror of
https://github.com/AdaCore/cvc5.git
synced 2026-02-12 12:32:16 -08:00
This adds `stable` as a build type, which is similar to `safe` but permits incomplete proofs in regressions and the use of regular options with `no-support:` fields.
57 lines
1.4 KiB
CMake
57 lines
1.4 KiB
CMake
###############################################################################
|
|
# Top contributors (to current version):
|
|
# Mathias Preiner, Andrew Reynolds, Aina Niemetz
|
|
#
|
|
# This file is part of the cvc5 project.
|
|
#
|
|
# Copyright (c) 2009-2025 by the authors listed in the file AUTHORS
|
|
# in the top-level source directory and their institutional affiliations.
|
|
# All rights reserved. See the file COPYING in the top-level source
|
|
# directory for licensing information.
|
|
# #############################################################################
|
|
#
|
|
# The build system configuration.
|
|
##
|
|
|
|
set(CVC5_EXAMPLES_API_CPP
|
|
bitvectors
|
|
bitvectors_and_arrays
|
|
combination
|
|
datatypes
|
|
exceptions
|
|
extract
|
|
helloworld
|
|
linear_arith
|
|
quickstart
|
|
sequences
|
|
sets
|
|
strings
|
|
parser
|
|
parser_sym_manager
|
|
uf
|
|
)
|
|
|
|
foreach(example ${CVC5_EXAMPLES_API_CPP})
|
|
cvc5_add_example(${example} "" "api/cpp")
|
|
endforeach()
|
|
|
|
if((NOT CVC5_SAFE_BUILD) AND (NOT CVC5_STABLE_BUILD))
|
|
cvc5_add_example(floating_point_arith "" "api/cpp")
|
|
cvc5_add_example(bags "" "api/cpp")
|
|
cvc5_add_example(relations "" "api/cpp")
|
|
cvc5_add_example(transcendentals "" "api/cpp")
|
|
endif()
|
|
|
|
if(CVC5_USE_COCOA)
|
|
cvc5_add_example(finite_field "" "api/cpp")
|
|
endif()
|
|
|
|
set(SYGUS_EXAMPLES_API_CPP
|
|
sygus-fun
|
|
sygus-inv
|
|
)
|
|
|
|
foreach(example ${SYGUS_EXAMPLES_API_CPP})
|
|
cvc5_add_example(${example} "${example}.cpp utils.h utils.cpp" "api/cpp")
|
|
endforeach()
|