mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 22:42:33 +02:00
compare MSVC version numerically with greater_equal
This commit is contained in:
parent
c7edc98d5c
commit
feef7dfec3
2 changed files with 10 additions and 10 deletions
10
cmake/externals/tbb/CMakeLists.txt
vendored
10
cmake/externals/tbb/CMakeLists.txt
vendored
|
@ -48,12 +48,12 @@ if (APPLE)
|
|||
LOG 1
|
||||
)
|
||||
elseif (WIN32)
|
||||
if ("${MSVC_VERSION}" EQUAL "1700")
|
||||
set(_TBB_MSVC_DIR "vc11")
|
||||
elseif ("${MSVC_VERSION}" EQUAL "1800")
|
||||
set(_TBB_MSVC_DIR "vc12")
|
||||
elseif ("${MSVC_VERSION}" EQUAL "1900" OR "${MSVC_VERSION}" EQUAL "1910")
|
||||
if (MSVC_VERSION GREATER_EQUAL 1900)
|
||||
set(_TBB_MSVC_DIR "vc14")
|
||||
elseif (MSVC_VERSION GREATER_EQUAL 1800)
|
||||
set(_TBB_MSVC_DIR "vc12")
|
||||
elseif (MSVC_VERSION GREATER_EQUAL 1700)
|
||||
set(_TBB_MSVC_DIR "vc11")
|
||||
else()
|
||||
message(FATAL_ERROR "MSVC ${MSVC_VERSION} not supported by Intel TBB")
|
||||
endif()
|
||||
|
|
|
@ -57,12 +57,12 @@ elseif (WIN32)
|
|||
set(_TBB_ARCH_DIR "ia32")
|
||||
endif()
|
||||
|
||||
if ("${MSVC_VERSION}" EQUAL "1700")
|
||||
set(_TBB_MSVC_DIR "vc11")
|
||||
elseif ("${MSVC_VERSION}" EQUAL "1800")
|
||||
set(_TBB_MSVC_DIR "vc12")
|
||||
elseif ("${MSVC_VERSION}" EQUAL "1900" OR "${MSVC_VERSION}" EQUAL "1910")
|
||||
if (MSVC_VERSION GREATER_EQUAL 1900)
|
||||
set(_TBB_MSVC_DIR "vc14")
|
||||
elseif (MSVC_VERSION GREATER_EQUAL 1800)
|
||||
set(_TBB_MSVC_DIR "vc12")
|
||||
elseif (MSVC_VERSION GREATER_EQUAL 1700)
|
||||
set(_TBB_MSVC_DIR "vc11")
|
||||
else()
|
||||
message(FATAL_ERROR "MSVC ${MSVC_VERSION} not supported by Intel TBB")
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue