2005-12-14 21:51:08 +03:00
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2004-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:46:51 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
|
|
|
|
2004-09-22 22:42:05 +04:00
|
|
|
# This file sets the basic flags for the Fortran language in CMake.
|
|
|
|
# It also loads the available platform file for the system-compiler
|
|
|
|
# if it exists.
|
|
|
|
|
2008-10-15 00:07:11 +04:00
|
|
|
# make sure we don't use CMAKE_BASE_NAME from somewhere else
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_BASE_NAME)
|
|
|
|
get_filename_component(CMAKE_BASE_NAME ${CMAKE_RC_COMPILER} NAME_WE)
|
|
|
|
if("${CMAKE_BASE_NAME}" MATCHES "windres")
|
|
|
|
set(CMAKE_BASE_NAME "windres")
|
|
|
|
endif()
|
|
|
|
set(CMAKE_SYSTEM_AND_RC_COMPILER_INFO_FILE
|
2004-09-22 22:42:05 +04:00
|
|
|
${CMAKE_ROOT}/Modules/Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_BASE_NAME}.cmake)
|
2012-08-13 21:47:32 +04:00
|
|
|
include(Platform/${CMAKE_SYSTEM_NAME}-${CMAKE_BASE_NAME} OPTIONAL)
|
2004-09-22 22:42:05 +04:00
|
|
|
|
|
|
|
|
2008-10-15 00:07:11 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set (CMAKE_RC_FLAGS "$ENV{RCFLAGS} ${CMAKE_RC_FLAGS_INIT}" CACHE STRING
|
2004-09-22 22:42:05 +04:00
|
|
|
"Flags for Fortran compiler.")
|
|
|
|
|
2008-04-22 19:10:19 +04:00
|
|
|
# These are the only types of flags that should be passed to the rc
|
|
|
|
# command, if COMPILE_FLAGS is used on a target this will be used
|
|
|
|
# to filter out any other flags
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_RC_FLAG_REGEX "^[-/](D|I)")
|
2004-09-22 22:42:05 +04:00
|
|
|
|
|
|
|
# now define the following rule variables
|
|
|
|
# CMAKE_RC_COMPILE_OBJECT
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_INCLUDE_FLAG_RC "-I")
|
2004-09-22 22:42:05 +04:00
|
|
|
# compile a Resource file into an object file
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT CMAKE_RC_COMPILE_OBJECT)
|
|
|
|
set(CMAKE_RC_COMPILE_OBJECT
|
2008-10-09 21:52:30 +04:00
|
|
|
"<CMAKE_RC_COMPILER> <FLAGS> <DEFINES> /fo<OBJECT> <SOURCE>")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2004-09-22 22:42:05 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(
|
2004-09-22 22:42:05 +04:00
|
|
|
CMAKE_RC_FLAGS
|
|
|
|
)
|
|
|
|
# set this variable so we can avoid loading this more than once.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_RC_INFORMATION_LOADED 1)
|