summaryrefslogtreecommitdiff
path: root/cmake/CVC4Config.cmake.in
blob: ea778241f49c6b4e50605acd2aced1510f248355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#####################
## CVC4Config.cmake.in
## Top contributors (to current version):
##   Mathias Preiner, Andres Noetzli
## This file is part of the CVC4 project.
## Copyright (c) 2009-2020 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.
##
@PACKAGE_INIT@

set(CVC4_BINDINGS_JAVA @BUILD_BINDINGS_JAVA@)
set(CVC4_BINDINGS_PYTHON @BUILD_BINDINGS_PYTHON@)
set(CVC4_BINDINGS_PYTHON_VERSION @BUILD_BINDINGS_PYTHON_VERSION@)

if(NOT TARGET CVC4::cvc4)
  include(${CMAKE_CURRENT_LIST_DIR}/CVC4Targets.cmake)
endif()

if(CVC4_BINDINGS_JAVA AND NOT TARGET CVC4::cvc4jar)
  set_and_check(CVC4_JNI_PATH "@PACKAGE_LIBRARY_INSTALL_DIR@")
  include(${CMAKE_CURRENT_LIST_DIR}/CVC4JavaTargets.cmake)
endif()
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback