mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
integrate Dan Liew's patch for language selection
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
561a4331a8
commit
99474eb44a
|
@ -325,6 +325,18 @@ if (("${TARGET_ARCHITECTURE}" STREQUAL "x86_64") OR ("${TARGET_ARCHITECTURE}" ST
|
||||||
unset(SSE_FLAGS)
|
unset(SSE_FLAGS)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# C++ language version
|
||||||
|
################################################################################
|
||||||
|
# FIXME: Use CMake's own mechanism for selecting language version
|
||||||
|
if (("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
|
||||||
|
z3_add_cxx_flag("-std=c++11" REQUIRED)
|
||||||
|
else()
|
||||||
|
message(AUTHOR_WARNING "Not setting C++ language version for compiler")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# FIXME: Remove "x.." when CMP0054 is set to NEW
|
# FIXME: Remove "x.." when CMP0054 is set to NEW
|
||||||
if ("x${CMAKE_CXX_COMPILER_ID}" STREQUAL "xMSVC")
|
if ("x${CMAKE_CXX_COMPILER_ID}" STREQUAL "xMSVC")
|
||||||
# This is the default for MSVC already but to replicate the
|
# This is the default for MSVC already but to replicate the
|
||||||
|
|
Loading…
Reference in a new issue