autocmake/modules/definitions.cmake
2016-05-19 23:22:28 +02:00

18 lines
513 B
CMake

#.rst:
#
# Add preprocessor definitions (example: --add-definitions="-DTHIS -DTHAT=137").
# These are passed all the way down to the compiler.
#
# Variables used::
#
# PREPROCESSOR_DEFINITIONS
#
# autocmake.yml configuration::
#
# docopt: "--add-definitions=<STRING> Add preprocesor definitions [default: '']."
# define: "'-DPREPROCESSOR_DEFINITIONS=\"{0}\"'.format(arguments['--add-definitions'])"
if(NOT "${PREPROCESSOR_DEFINITIONS}" STREQUAL "")
add_definitions(${PREPROCESSOR_DEFINITIONS})
endif()