diff options
author | chriseth <chris@ethereum.org> | 2017-07-14 03:04:19 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-08-23 23:37:35 +0800 |
commit | c9cf24458baa77e2a2de1bedbad5040d0d83aab2 (patch) | |
tree | 75e1ae7b329c81470d3df39b24c564be9cff9740 /cmake/FindZ3.cmake | |
parent | b3f8ed457a10dab36abaef72310a755a95e0753f (diff) | |
download | dexon-solidity-c9cf24458baa77e2a2de1bedbad5040d0d83aab2.tar.gz dexon-solidity-c9cf24458baa77e2a2de1bedbad5040d0d83aab2.tar.zst dexon-solidity-c9cf24458baa77e2a2de1bedbad5040d0d83aab2.zip |
Prepare build system for Z3.
Diffstat (limited to 'cmake/FindZ3.cmake')
-rw-r--r-- | cmake/FindZ3.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cmake/FindZ3.cmake b/cmake/FindZ3.cmake new file mode 100644 index 00000000..8f3f9ee1 --- /dev/null +++ b/cmake/FindZ3.cmake @@ -0,0 +1,9 @@ +find_path(Z3_INCLUDE_DIR z3++.h) +find_library(Z3_LIBRARY NAMES z3 ) +include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(Z3 DEFAULT_MSG Z3_LIBRARY Z3_INCLUDE_DIR) + +if(Z3_FOUND) + set(Z3_LIBRARIES ${Z3_LIBRARY}) +endif() + |