mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 12:09:48 +00:00
054b587504
The commit "Disable Intel CRT deprecation warnings" broke the logic that disabled MS's CRT deprecation warnings. This fixes the logic to disable the warnings for both MSVC and Intel.
65 lines
2.4 KiB
CMake
65 lines
2.4 KiB
CMake
#=============================================================================
|
|
# CMake - Cross Platform Makefile Generator
|
|
# Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
#
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
# see accompanying file Copyright.txt for details.
|
|
#
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the License for more information.
|
|
#=============================================================================
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# set some special flags for different compilers
|
|
#
|
|
IF(CMAKE_GENERATOR MATCHES "Visual Studio 7")
|
|
SET(CMAKE_SKIP_COMPATIBILITY_TESTS 1)
|
|
ENDIF(CMAKE_GENERATOR MATCHES "Visual Studio 7")
|
|
IF(CMAKE_GENERATOR MATCHES "Visual Studio 6")
|
|
SET(CMAKE_SKIP_COMPATIBILITY_TESTS 1)
|
|
ENDIF(CMAKE_GENERATOR MATCHES "Visual Studio 6")
|
|
INCLUDE (${CMAKE_ROOT}/Modules/CMakeBackwardCompatibilityCXX.cmake)
|
|
|
|
IF(WIN32 AND "${CMAKE_C_COMPILER_ID}" MATCHES "^(Intel)$")
|
|
SET(_INTEL_WINDOWS 1)
|
|
ENDIF()
|
|
|
|
# Disable deprecation warnings for standard C functions.
|
|
# really only needed for newer versions of VS, but should
|
|
# not hurt other versions, and this will work into the
|
|
# future
|
|
IF(MSVC OR _INTEL_WINDOWS)
|
|
ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE)
|
|
ELSE()
|
|
ENDIF()
|
|
|
|
#silence duplicate symbol warnings on AIX
|
|
IF(CMAKE_SYSTEM MATCHES "AIX.*")
|
|
IF(NOT CMAKE_COMPILER_IS_GNUCXX)
|
|
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -bhalt:5 ")
|
|
ENDIF(NOT CMAKE_COMPILER_IS_GNUCXX)
|
|
ENDIF(CMAKE_SYSTEM MATCHES "AIX.*")
|
|
|
|
IF(CMAKE_SYSTEM MATCHES "IRIX.*")
|
|
IF(NOT CMAKE_COMPILER_IS_GNUCXX)
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,-woff84 -no_auto_include")
|
|
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-woff15")
|
|
ENDIF(NOT CMAKE_COMPILER_IS_GNUCXX)
|
|
ENDIF(CMAKE_SYSTEM MATCHES "IRIX.*")
|
|
|
|
IF(CMAKE_SYSTEM MATCHES "OSF1-V.*")
|
|
IF(NOT CMAKE_COMPILER_IS_GNUCXX)
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -timplicit_local -no_implicit_include ")
|
|
ENDIF(NOT CMAKE_COMPILER_IS_GNUCXX)
|
|
ENDIF(CMAKE_SYSTEM MATCHES "OSF1-V.*")
|
|
|
|
# use the ansi CXX compile flag for building cmake
|
|
IF (CMAKE_ANSI_CXXFLAGS)
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_ANSI_CXXFLAGS}")
|
|
ENDIF (CMAKE_ANSI_CXXFLAGS)
|
|
|
|
IF (CMAKE_ANSI_CFLAGS)
|
|
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_ANSI_CFLAGS}")
|
|
ENDIF (CMAKE_ANSI_CFLAGS)
|