1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0029129: Incomplete support of MSVS2017

MSVC_VERSION is used instead of MSVC10, MSVC11, MSVC12, etc.
This commit is contained in:
apn 2018-03-12 16:19:21 +03:00 committed by bugmaster
parent 967905a364
commit 1167d6cc50
3 changed files with 27 additions and 17 deletions

View File

@ -16,10 +16,9 @@ if (MSVC)
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /fp:precise") set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /fp:precise")
endif() endif()
# set compiler short name and choose SSE2 option for appropriate MSVC compilers # add SSE2 option for old MSVC compilers (VS 2005 - 2010, 32 bit only)
# ONLY for 32-bit
if (NOT CMAKE_SIZEOF_VOID_P EQUAL 8) if (NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
if (MSVC80 OR MSVC90 OR MSVC10) if (MSVC AND ((MSVC_VERSION EQUAL 1400) OR (MSVC_VERSION EQUAL 1500) OR (MSVC_VERSION EQUAL 1600)))
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:SSE2") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:SSE2")
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /arch:SSE2") set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /arch:SSE2")
endif() endif()
@ -82,7 +81,7 @@ if (IS_DEBUG_C)
string (REGEX REPLACE "-DDEBUG" "" CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}") string (REGEX REPLACE "-DDEBUG" "" CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}")
endif() endif()
# enable parallel compilation on MSVC 9 and above # enable parallel compilation on MSVC 9 and above
if (MSVC AND NOT MSVC70 AND NOT MSVC80) if (MSVC AND (MSVC_VERSION GREATER 1400))
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
endif() endif()

View File

@ -60,25 +60,27 @@ endmacro()
# COMPILER variable # COMPILER variable
macro (OCCT_MAKE_COMPILER_SHORT_NAME) macro (OCCT_MAKE_COMPILER_SHORT_NAME)
if (MSVC) if (MSVC)
if (MSVC70) if ((MSVC_VERSION EQUAL 1300) OR (MSVC_VERSION EQUAL 1310))
set (COMPILER vc7) set (COMPILER vc7)
elseif (MSVC80) elseif (MSVC_VERSION EQUAL 1400)
set (COMPILER vc8) set (COMPILER vc8)
elseif (MSVC90) elseif (MSVC_VERSION EQUAL 1500)
set (COMPILER vc9) set (COMPILER vc9)
elseif (MSVC10) elseif (MSVC_VERSION EQUAL 1600)
set (COMPILER vc10) set (COMPILER vc10)
elseif (MSVC11) elseif (MSVC_VERSION EQUAL 1700)
set (COMPILER vc11) set (COMPILER vc11)
elseif (MSVC12) elseif (MSVC_VERSION EQUAL 1800)
set (COMPILER vc12) set (COMPILER vc12)
elseif (MSVC14) elseif (MSVC_VERSION EQUAL 1900)
set (COMPILER vc14) set (COMPILER vc14)
elseif (MSVC15) elseif ((MSVC_VERSION GREATER 1900) AND (MSVC_VERSION LESS 2000))
# Since Visual Studio 15 (2017), its version diverged from version of # Since Visual Studio 15 (2017), its version diverged from version of
# compiler which is 14.1; as that compiler uses the same run-time as 14.0, # compiler which is 14.1; as that compiler uses the same run-time as 14.0,
# we keep its id as "vc14" to be compatibille # we keep its id as "vc14" to be compatibille
set (COMPILER vc14) set (COMPILER vc14)
else()
message (FATAL_ERROR "Unrecognized MSVC_VERSION")
endif() endif()
elseif (DEFINED CMAKE_COMPILER_IS_GNUCC) elseif (DEFINED CMAKE_COMPILER_IS_GNUCC)
set (COMPILER gcc) set (COMPILER gcc)

View File

@ -9,16 +9,25 @@ set( OCC_LIB_PATH "" CACHE PATH "OpenCascade LIB PATH")
set( OCCTDEMO_DIR ${OCC_CASROOT}/samples/mfc/occtdemo) set( OCCTDEMO_DIR ${OCC_CASROOT}/samples/mfc/occtdemo)
if (DEFINED MSVC70) if ((MSVC_VERSION EQUAL 1300) OR (MSVC_VERSION EQUAL 1310))
SET(COMPILER vc7) SET(COMPILER vc7)
elseif (DEFINED MSVC80) elseif (MSVC_VERSION EQUAL 1400)
SET(COMPILER vc8) SET(COMPILER vc8)
elseif (DEFINED MSVC90) elseif (MSVC_VERSION EQUAL 1500)
SET(COMPILER vc9) SET(COMPILER vc9)
elseif (DEFINED MSVC10) elseif (MSVC_VERSION EQUAL 1600)
SET(COMPILER vc10) SET(COMPILER vc10)
elseif (DEFINED MSVC11) elseif (MSVC_VERSION EQUAL 1700)
SET(COMPILER vc11) SET(COMPILER vc11)
elseif (MSVC_VERSION EQUAL 1800)
SET(COMPILER vc12)
elseif (MSVC_VERSION EQUAL 1900)
SET(COMPILER vc14)
elseif ((MSVC_VERSION GREATER 1900) AND (MSVC_VERSION LESS 2000))
# Since Visual Studio 15 (2017), its version diverged from version of
# compiler which is 14.1; as that compiler uses the same run-time as 14.0,
# we keep its id as "vc14" to be compatibille
SET(COMPILER vc14)
else() else()
SET(COMPILER ${CMAKE_GENERATOR}) SET(COMPILER ${CMAKE_GENERATOR})
endif() endif()