diff --git a/adm/cmake/occt_defs_flags.cmake b/adm/cmake/occt_defs_flags.cmake index f33ae158f2..0d8fe91fb3 100644 --- a/adm/cmake/occt_defs_flags.cmake +++ b/adm/cmake/occt_defs_flags.cmake @@ -30,8 +30,14 @@ if (MSVC) # suppress warning on using portable non-secure functions in favor of non-portable secure ones add_definitions (-D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE) else() - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fexceptions -fPIC") - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fexceptions -fPIC") + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fexceptions") + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fexceptions") + if (NOT CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC") + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC") + set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC") + else() + add_definitions (-D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE) + endif() add_definitions(-DOCC_CONVERT_SIGNALS) endif() diff --git a/adm/templates/env.bat b/adm/templates/env.bat index c2c2042432..33e129a457 100644 --- a/adm/templates/env.bat +++ b/adm/templates/env.bat @@ -131,6 +131,8 @@ if not "%DevEnvDir%" == "" ( ) ) else if /I "%VCFMT%" == "gcc" ( rem MinGW +) else if /I "%VCFMT%" == "clang" ( + rem clang ) else ( echo Error: first argument ^(%VCVER%^) should specify supported version of Visual C++, echo one of: @@ -184,6 +186,8 @@ if /I "%VCFMT%" == "vc9" ( set "VCPlatformToolSet=ClangCL" ) else if /I "%VCFMT%" == "gcc" ( rem MinGW +) else if /I "%VCFMT%" == "clang" ( + rem clang ) else ( echo Error: wrong VS identifier exit /B diff --git a/adm/templates/env.bat.in b/adm/templates/env.bat.in index aa3bf6efc7..d83de73336 100644 --- a/adm/templates/env.bat.in +++ b/adm/templates/env.bat.in @@ -80,6 +80,8 @@ if not "%DevEnvDir%" == "" ( ) ) else if /I "%VCFMT%" == "gcc" ( rem MinGW +) else if /I "%VCFMT%" == "clang" ( + rem clang ) else ( echo Error: wrong VS identifier exit /B @@ -118,6 +120,8 @@ if /I "%VCFMT%" == "vc9" ( set "VCPlatformToolSet=v142" ) else if /I "%VCFMT%" == "gcc" ( rem MinGW +) else if /I "%VCFMT%" == "clang" ( + rem clang ) else ( echo Error: first argument ^(%VCVER%^) should specify supported version of Visual C++, echo one of: vc10 ^(VS 2010 SP3^), vc11 ^(VS 2012 SP3^), vc12 ^(VS 2013^) or vc14 ^(VS 2015^)