86 lines
2.9 KiB
CMake
86 lines
2.9 KiB
CMake
# Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License, version 2.0,
|
|
# as published by the Free Software Foundation.
|
|
#
|
|
# This program is also distributed with certain software (including
|
|
# but not limited to OpenSSL) that is licensed under separate terms,
|
|
# as designated in a particular file or component or in included license
|
|
# documentation. The authors of MySQL hereby grant you an additional
|
|
# permission to link the program and your derivative works with the
|
|
# separately licensed software that they have included with MySQL.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License, version 2.0, for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
## ADD_COMPILE_FLAGS(<source files> COMPILE_FLAGS <flags>)
|
|
## Use this for adding compiler flags to source files.
|
|
FUNCTION(ADD_COMPILE_FLAGS)
|
|
SET(FILES "")
|
|
SET(FLAGS "")
|
|
SET(COMPILE_FLAGS_SEEN)
|
|
FOREACH(ARG ${ARGV})
|
|
IF(ARG STREQUAL "COMPILE_FLAGS")
|
|
SET(COMPILE_FLAGS_SEEN 1)
|
|
ELSEIF(COMPILE_FLAGS_SEEN)
|
|
LIST(APPEND FLAGS ${ARG})
|
|
IF(${ARG} MATCHES "^-D")
|
|
MESSAGE(WARNING
|
|
"${ARG} should be in COMPILE_DEFINITIONS not COMPILE_FLAGS")
|
|
ENDIF()
|
|
ELSE()
|
|
LIST(APPEND FILES ${ARG})
|
|
ENDIF()
|
|
ENDFOREACH()
|
|
FOREACH(FILE ${FILES})
|
|
FOREACH(FLAG ${FLAGS})
|
|
GET_SOURCE_FILE_PROPERTY(PROP ${FILE} COMPILE_FLAGS)
|
|
IF(NOT PROP)
|
|
SET(PROP ${FLAG})
|
|
ELSE()
|
|
STRING_APPEND(PROP " ${FLAG}")
|
|
ENDIF()
|
|
SET_SOURCE_FILES_PROPERTIES(
|
|
${FILE} PROPERTIES COMPILE_FLAGS "${PROP}"
|
|
)
|
|
ENDFOREACH()
|
|
ENDFOREACH()
|
|
ENDFUNCTION()
|
|
|
|
|
|
## ADD_COMPILE_DEFINITIONS(<source files> COMPILE_DEFINITIONS <flags>)
|
|
## Use this for adding preprocessor flags VAR or VAR=value to source files.
|
|
## cmake will prefix with '-D' and sort all COMPILE_DEFINITIONS alphabetically.
|
|
FUNCTION(ADD_COMPILE_DEFINITIONS)
|
|
SET(FILES "")
|
|
SET(FLAGS "")
|
|
SET(COMPILE_DEFINITIONS_SEEN)
|
|
FOREACH(ARG ${ARGV})
|
|
IF(ARG STREQUAL "COMPILE_DEFINITIONS")
|
|
SET(COMPILE_DEFINITIONS_SEEN 1)
|
|
ELSEIF(COMPILE_DEFINITIONS_SEEN)
|
|
LIST(APPEND FLAGS ${ARG})
|
|
ELSE()
|
|
LIST(APPEND FILES ${ARG})
|
|
ENDIF()
|
|
ENDFOREACH()
|
|
FOREACH(FILE ${FILES})
|
|
GET_SOURCE_FILE_PROPERTY(DEFS ${FILE} COMPILE_DEFINITIONS)
|
|
IF(NOT DEFS)
|
|
SET(DEFS ${FLAGS})
|
|
ELSE()
|
|
LIST(APPEND DEFS ${FLAGS})
|
|
ENDIF()
|
|
SET_SOURCE_FILES_PROPERTIES(
|
|
${FILE} PROPERTIES COMPILE_DEFINITIONS "${DEFS}")
|
|
ENDFOREACH()
|
|
ENDFUNCTION()
|