aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/FindZ3.cmake
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-12-17 20:42:48 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-12-17 22:15:11 +0800
commit2f698b6efe1b1bb932b238a5dd912b290978ac72 (patch)
treee5c669583348c70c91eceb4655701e3cf9809ef5 /cmake/FindZ3.cmake
parent8d3617b7c522d74bcc36a1fbc1eb7c16bf96ad4d (diff)
downloaddexon-solidity-2f698b6efe1b1bb932b238a5dd912b290978ac72.tar.gz
dexon-solidity-2f698b6efe1b1bb932b238a5dd912b290978ac72.tar.zst
dexon-solidity-2f698b6efe1b1bb932b238a5dd912b290978ac72.zip
Use imported CMake targets.
Diffstat (limited to 'cmake/FindZ3.cmake')
-rw-r--r--cmake/FindZ3.cmake9
1 files changed, 7 insertions, 2 deletions
diff --git a/cmake/FindZ3.cmake b/cmake/FindZ3.cmake
index c017cac2..ad34cbc3 100644
--- a/cmake/FindZ3.cmake
+++ b/cmake/FindZ3.cmake
@@ -1,9 +1,14 @@
if (USE_Z3)
find_path(Z3_INCLUDE_DIR NAMES z3++.h PATH_SUFFIXES z3)
- find_library(Z3_LIBRARY NAMES z3 )
+ find_library(Z3_LIBRARY NAMES z3)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Z3 DEFAULT_MSG Z3_LIBRARY Z3_INCLUDE_DIR)
+
+ if (NOT TARGET Z3::Z3)
+ add_library(Z3::Z3 UNKNOWN IMPORTED)
+ set_property(TARGET Z3::Z3 PROPERTY IMPORTED_LOCATION ${Z3_LIBRARY})
+ set_property(TARGET Z3::Z3 PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${Z3_INCLUDE_DIR})
+ endif()
else()
set(Z3_FOUND FALSE)
endif()
-# TODO: Create IMPORTED library for Z3.