mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +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)
|
unset(SSE_FLAGS)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# Threading support
|
||||||
|
################################################################################
|
||||||
|
find_package(Threads)
|
||||||
|
list(APPEND Z3_DEPENDENT_LIBS ${CMAKE_THREAD_LIBS_INIT})
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Compiler warnings
|
# Compiler warnings
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
Loading…
Reference in a new issue