mirror of
https://github.com/AdaCore/cvc5.git
synced 2026-02-12 12:32:16 -08:00
47 lines
2.2 KiB
CMake
47 lines
2.2 KiB
CMake
###############################################################################
|
|
# Top contributors (to current version):
|
|
# Aina Niemetz, Andrew Reynolds, Hans-Joerg Schurr
|
|
#
|
|
# 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.
|
|
##
|
|
cvc5_add_unit_test_black(api_command_black api/cpp)
|
|
cvc5_add_unit_test_black(api_datatype_black api/cpp)
|
|
cvc5_add_unit_test_black(api_grammar_black api/cpp)
|
|
cvc5_add_unit_test_black(api_input_parser_black api/cpp)
|
|
cvc5_add_unit_test_black(api_kind_black api/cpp)
|
|
cvc5_add_unit_test_black(api_op_black api/cpp)
|
|
cvc5_add_unit_test_white(api_op_white api/cpp)
|
|
cvc5_add_unit_test_black(api_parametric_datatype_black api/cpp)
|
|
cvc5_add_unit_test_black(api_proof_black api/cpp)
|
|
cvc5_add_unit_test_black(api_proof_rule_black api/cpp)
|
|
cvc5_add_unit_test_black(api_result_black api/cpp)
|
|
cvc5_add_unit_test_black(api_skolem_id_black api/cpp)
|
|
cvc5_add_unit_test_black(api_solver_black api/cpp)
|
|
cvc5_add_unit_test_white(api_solver_white api/cpp)
|
|
cvc5_add_unit_test_black(api_sort_black api/cpp)
|
|
cvc5_add_unit_test_black(api_sort_kind_black api/cpp)
|
|
cvc5_add_unit_test_black(api_symbol_manager_black api/cpp)
|
|
cvc5_add_unit_test_black(api_synth_result_black api/cpp)
|
|
cvc5_add_unit_test_black(api_term_black api/cpp)
|
|
cvc5_add_unit_test_white(api_term_white api/cpp)
|
|
cvc5_add_unit_test_black(api_term_manager_black api/cpp)
|
|
cvc5_add_unit_test_black(api_types_black api/cpp)
|
|
|
|
# do not issue deprecation warnings when using deprecated functions
|
|
set_source_files_properties(input_parser_black.cpp
|
|
PROPERTIES COMPILE_OPTIONS
|
|
"-Wno-deprecated-declarations;-Wno-error=deprecated-declarations")
|
|
# tests to cover deprecated functions for API coverage build in nightlies
|
|
set_source_files_properties(api_deprecated_black.cpp
|
|
PROPERTIES COMPILE_OPTIONS
|
|
"-Wno-deprecated-declarations;-Wno-error=deprecated-declarations")
|
|
cvc5_add_unit_test_black(api_deprecated_black api/cpp)
|