mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
simplify XCODE_VERSION check
This commit is contained in:
parent
130ad13dee
commit
b73c6462d6
@ -706,7 +706,7 @@ endif()
|
||||
|
||||
# Xcode compiler
|
||||
if (CMAKE_GENERATOR MATCHES Xcode)
|
||||
if (NOT XCODE_VERSION VERSION_GREATER "5.0")
|
||||
if (XCODE_VERSION VERSION_LESS "5.0")
|
||||
# Automatically select the Xcode compiler if not set
|
||||
if (NOT DEFINED CMAKE_XCODE_ATTRIBUTE_GCC_VERSION)
|
||||
# XCode >= 3.1 has gcc 4.2 (up to actual Xcode)
|
||||
@ -716,7 +716,7 @@ if (CMAKE_GENERATOR MATCHES Xcode)
|
||||
ENDIF(NOT DEFINED CMAKE_XCODE_ATTRIBUTE_GCC_VERSION)
|
||||
# Print the selected compiler version
|
||||
MESSAGE(STATUS "---- Using XCode compiler CMAKE_XCODE_ATTRIBUTE_GCC_VERSION=${CMAKE_XCODE_ATTRIBUTE_GCC_VERSION}")
|
||||
ENDIF(NOT XCODE_VERSION VERSION_GREATER "5.0")
|
||||
ENDIF(XCODE_VERSION VERSION_LESS "5.0")
|
||||
ENDIF(CMAKE_GENERATOR MATCHES Xcode)
|
||||
|
||||
if (WIN32 AND Qt5Core_FOUND)
|
||||
|
Loading…
Reference in New Issue
Block a user