mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
290 B
CMake
10 lines
290 B
CMake
if (USE_Z3)
|
|
find_path(Z3_INCLUDE_DIR z3++.h)
|
|
find_library(Z3_LIBRARY NAMES z3 )
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Z3 DEFAULT_MSG Z3_LIBRARY Z3_INCLUDE_DIR)
|
|
else()
|
|
set(Z3_FOUND FALSE)
|
|
endif()
|
|
# TODO: Create IMPORTED library for Z3.
|