mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 17:42:32 +02:00
remove commas breaking MSVC dir setting
This commit is contained in:
parent
57fe5ae802
commit
5b072b591e
2 changed files with 6 additions and 6 deletions
6
cmake/externals/tbb/CMakeLists.txt
vendored
6
cmake/externals/tbb/CMakeLists.txt
vendored
|
@ -49,11 +49,11 @@ if (APPLE)
|
|||
)
|
||||
elseif (WIN32)
|
||||
if ("${MSVC_VERSION}" EQUAL "1700")
|
||||
set(_TBB_MSVC_DIR, "vc11")
|
||||
set(_TBB_MSVC_DIR "vc11")
|
||||
elseif ("${MSVC_VERSION}" EQUAL "1800")
|
||||
set(_TBB_MSVC_DIR, "vc12")
|
||||
set(_TBB_MSVC_DIR "vc12")
|
||||
elseif ("${MSVC_VERSION}" EQUAL "1900" OR "${MSVC_VERSION}" EQUAL "1910")
|
||||
set(_TBB_MSVC_DIR, "vc14")
|
||||
set(_TBB_MSVC_DIR "vc14")
|
||||
else()
|
||||
message(FATAL_ERROR "MSVC ${MSVC_VERSION} not supported by Intel TBB")
|
||||
endif()
|
||||
|
|
|
@ -58,11 +58,11 @@ elseif (WIN32)
|
|||
endif()
|
||||
|
||||
if ("${MSVC_VERSION}" EQUAL "1700")
|
||||
set(_TBB_MSVC_DIR, "vc11")
|
||||
set(_TBB_MSVC_DIR "vc11")
|
||||
elseif ("${MSVC_VERSION}" EQUAL "1800")
|
||||
set(_TBB_MSVC_DIR, "vc12")
|
||||
set(_TBB_MSVC_DIR "vc12")
|
||||
elseif ("${MSVC_VERSION}" EQUAL "1900" OR "${MSVC_VERSION}" EQUAL "1910")
|
||||
set(_TBB_MSVC_DIR, "vc14")
|
||||
set(_TBB_MSVC_DIR "vc14")
|
||||
else()
|
||||
message(FATAL_ERROR "MSVC ${MSVC_VERSION} not supported by Intel TBB")
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue