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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
###############################################################################
# Top contributors (to current version):
# Aina Niemetz, Mathias Preiner, Mudathir Mohamed
#
# 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.
##
cmake_minimum_required(VERSION 3.16)
project(cvc5-examples)
set(CMAKE_CXX_STANDARD 17)
enable_testing()
# Find cvc5 package. If cvc5 is not installed into the default system location
# use `cmake .. -DCMAKE_PREFIX_PATH=path/to/lib/cmake` to specify the location
# of cvc5Config.cmake.
find_package(cvc5)
set(EXAMPLES_BIN_DIR ${CMAKE_BINARY_DIR}/bin)
# Add example target and create test to run example with ctest.
#
# > name: The name of the example
# > src_files: The list of source files passed as string "src1 src2 ..."
# (alternative: "src1;src2;..."). If empty, <name>.cpp is assumed.
# > output_dir: Determines the examples subdirectory and is empty (passed as
# empty string) for the examples root directory (this)
# > ARGN: Any additional arguments passed to the macro are interpreted as
# as arguments to the test executable.
macro(cvc5_add_example name src_files output_dir)
# The build target is created without the path prefix (not supported),
# e.g., for '<output_dir>/myexample.cpp'
# we create build target 'myexample'
# and build it with 'make myexample'.
# As a consequence, all build target names must be globally unique.
if("${src_files}" STREQUAL "")
set(src_files_list ${name}.cpp)
else()
string(REPLACE " " ";" src_files_list "${src_files}")
endif()
add_executable(${name} ${src_files_list})
target_link_libraries(${name} cvc5::cvc5 cvc5::cvc5parser)
# The test target is prefixed with the path,
# e.g., for '<output_dir>/myexample.cpp'
# we create test target '<output_dir>/myexample'
# and run it with 'ctest -R "<output_dir>/myexample"'.
set(example_bin_dir ${EXAMPLES_BIN_DIR}/${output_dir})
if("${output_dir}" STREQUAL "")
set(example_test ${name})
else()
set(example_test ${output_dir}/${name})
endif()
set_target_properties(${name}
PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${example_bin_dir})
add_test(${example_test} ${example_bin_dir}/${name} ${ARGN})
endmacro()
cvc5_add_example(simple_vc_cxx "" "")
cvc5_add_example(simple_vc_quant_cxx "" "")
add_subdirectory(api/cpp)
add_subdirectory(api/c)
if(TARGET cvc5::cvc5jar)
find_package(Java REQUIRED)
include(UseJava)
# get directory build/install/lib where libcvc5jni.so is installed
get_target_property(CVC5_LIB_FILE cvc5::cvc5 LOCATION)
get_filename_component(CVC5_JNI_PATH ${CVC5_LIB_FILE} DIRECTORY)
message(STATUS "CVC5_JNI_PATH: ${CVC5_JNI_PATH}")
get_target_property(CVC5_JAR cvc5::cvc5jar JAR_FILE)
message(STATUS "cvc5jar: ${CVC5_JAR}")
if(WIN32)
set(PATH_SEP ";")
else()
set(PATH_SEP ":")
endif()
add_jar(SimpleVC SimpleVC.java INCLUDE_JARS "${CVC5_JAR}")
add_test(
NAME java/SimpleVC
COMMAND
${Java_JAVA_EXECUTABLE}
-cp "${CVC5_JAR}${PATH_SEP}${CMAKE_BINARY_DIR}/SimpleVC.jar"
-Djava.library.path=${CVC5_JNI_PATH}
SimpleVC
)
add_subdirectory(api/java)
endif()
if(CVC5_BINDINGS_PYTHON)
message(STATUS "with Python examples")
# If legacy Python API has been built
add_subdirectory(api/python)
endif()
|