aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/FindZ3.cmake
diff options
context:
space:
mode:
authorPaweł Bylica <chfast@gmail.com>2017-08-24 14:31:51 +0800
committerPaweł Bylica <chfast@gmail.com>2017-08-24 14:31:51 +0800
commit5831b048c03481fac94ef8397598070a9fc04be5 (patch)
treefe68d026da75a113525193238d651897efcb685a /cmake/FindZ3.cmake
parent957f23a9f4cb181b2dfaf0170816080513bfe786 (diff)
downloaddexon-solidity-5831b048c03481fac94ef8397598070a9fc04be5.tar.gz
dexon-solidity-5831b048c03481fac94ef8397598070a9fc04be5.tar.zst
dexon-solidity-5831b048c03481fac94ef8397598070a9fc04be5.zip
CMake: Fix FindZ3
Diffstat (limited to 'cmake/FindZ3.cmake')
-rw-r--r--cmake/FindZ3.cmake8
1 files changed, 3 insertions, 5 deletions
diff --git a/cmake/FindZ3.cmake b/cmake/FindZ3.cmake
index 8f3f9ee1..971d3b4b 100644
--- a/cmake/FindZ3.cmake
+++ b/cmake/FindZ3.cmake
@@ -1,9 +1,7 @@
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)
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(Z3 DEFAULT_MSG Z3_LIBRARY Z3_INCLUDE_DIR)
-if(Z3_FOUND)
- set(Z3_LIBRARIES ${Z3_LIBRARY})
-endif()
+# TODO: Create IMPORTED library for Z3.