1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
###############################################################################
# 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()
|