3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-04 16:44:07 +00:00

Fix Z3Config.cmake.in when generating a static library (#5555)

This commit is contained in:
Duncan Ogilvie 2021-09-17 19:03:10 +02:00 committed by GitHub
parent d36c3faf76
commit 91fb646f55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,21 @@
# This file was built for the @CONFIG_FILE_TYPE@.
################################################################################
# Handle dependencies (necessary when compiling the static library)
if(NOT @Z3_BUILD_LIBZ3_SHARED@)
include(CMakeFindDependencyMacro)
# Threads::Threads
set(THREADS_PREFER_PTHREAD_FLAG TRUE)
find_dependency(Threads)
# GMP::GMP
if(@Z3_USE_LIB_GMP@)
find_dependency(GMP)
endif()
endif()
# Exported targets
include("${CMAKE_CURRENT_LIST_DIR}/Z3Targets.cmake")