mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
[CMake] Unbreak detection of pthreads for CMake versions < 3.4
This commit is contained in:
parent
ae8a089e25
commit
5a8205cb0c
|
@ -22,6 +22,13 @@ endif()
|
|||
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cxx_compiler_flags_overrides.cmake")
|
||||
project(Z3 CXX)
|
||||
|
||||
if ("${CMAKE_VERSION}" VERSION_LESS "3.4")
|
||||
# FIXME: Drop this when we upgrade to newer CMake versions.
|
||||
# HACK: Although we don't need C language support if it is not
|
||||
# enabled CMake's `FindThreads` module fails in old CMake versions.
|
||||
enable_language(C)
|
||||
endif()
|
||||
|
||||
################################################################################
|
||||
# Project version
|
||||
################################################################################
|
||||
|
|
Loading…
Reference in a new issue