2013-10-15 19:17:36 +04:00
|
|
|
COMPILE_DEFINITIONS
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
Preprocessor definitions for compiling a target's sources.
|
|
|
|
|
2014-02-05 17:51:08 +04:00
|
|
|
The ``COMPILE_DEFINITIONS`` property may be set to a semicolon-separated
|
|
|
|
list of preprocessor definitions using the syntax ``VAR`` or ``VAR=value``.
|
2013-10-15 19:17:36 +04:00
|
|
|
Function-style definitions are not supported. CMake will
|
|
|
|
automatically escape the value correctly for the native build system
|
|
|
|
(note that CMake language syntax may require escapes to specify some
|
2014-02-05 17:51:08 +04:00
|
|
|
values).
|
2013-10-15 19:17:36 +04:00
|
|
|
|
|
|
|
CMake will automatically drop some definitions that are not supported
|
|
|
|
by the native build tool. The VS6 IDE does not support definition
|
|
|
|
values with spaces (but NMake does).
|
|
|
|
|
2014-02-05 17:51:08 +04:00
|
|
|
.. include:: /include/COMPILE_DEFINITIONS_DISCLAIMER.txt
|
|
|
|
|
|
|
|
Contents of ``COMPILE_DEFINITIONS`` may use "generator expressions" with the
|
2014-02-05 16:19:02 +04:00
|
|
|
syntax ``$<...>``. See the :manual:`cmake-generator-expressions(7)` manual
|
2014-02-05 17:51:08 +04:00
|
|
|
for available expressions. See the :manual:`cmake-buildsystem(7)` manual
|
|
|
|
for more on defining buildsystem properties.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2014-02-05 17:51:08 +04:00
|
|
|
The corresponding :prop_tgt:`COMPILE_DEFINITIONS_<CONFIG>` property may
|
|
|
|
be set to specify per-configuration definitions. Generator expressions
|
|
|
|
should be preferred instead of setting the alternative property.
|