compare MSVC version numerically with greater_equal

This commit is contained in:
Stephen Birarda 2017-08-10 09:46:58 -07:00
parent c7edc98d5c
commit feef7dfec3
2 changed files with 10 additions and 10 deletions

View file

@ -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()

View file

@ -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()