mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
Try to fix the freebsd build by linking against the system's
threading library.
This commit is contained in:
parent
786362a423
commit
017e9a2461
|
@ -261,6 +261,12 @@ if ("${TARGET_ARCHITECTURE}" STREQUAL "x86_64")
|
|||
unset(SSE_FLAGS)
|
||||
endif()
|
||||
|
||||
################################################################################
|
||||
# Threading support
|
||||
################################################################################
|
||||
find_package(Threads)
|
||||
list(APPEND Z3_DEPENDENT_LIBS ${CMAKE_THREAD_LIBS_INIT})
|
||||
|
||||
################################################################################
|
||||
# Compiler warnings
|
||||
################################################################################
|
||||
|
|
Loading…
Reference in a new issue