File: FindMiniSat.cmake

package info (click to toggle)
boolector 3.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 20,744 kB
  • sloc: ansic: 83,136; cpp: 18,159; sh: 3,668; python: 2,889; makefile: 210
file content (24 lines) | stat: -rw-r--r-- 781 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Boolector: Satisfiablity Modulo Theories (SMT) solver.
#
# Copyright (C) 2007-2021 by the authors listed in the AUTHORS file.
#
# This file is part of Boolector.
# See COPYING for more information on using this software.
#

# Find MiniSAT
# MiniSat_FOUND - found MiniSat lib
# MiniSat_INCLUDE_DIR - the MiniSat include directory
# MiniSat_LIBRARIES - Libraries needed to use MiniSat

find_path(MiniSat_INCLUDE_DIR NAMES minisat/simp/SimpSolver.h)
find_library(MiniSat_LIBRARIES NAMES minisat)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(MiniSat
  DEFAULT_MSG MiniSat_INCLUDE_DIR MiniSat_LIBRARIES)

mark_as_advanced(MiniSat_INCLUDE_DIR MiniSat_LIBRARIES)
if(MiniSat_LIBRARIES)
  message(STATUS "Found MiniSat library: ${MiniSat_LIBRARIES}")
endif()