You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
509 B
22 lines
509 B
UNITY_BUILD_CODE_BEFORE_INCLUDE
|
|
-------------------------------
|
|
|
|
.. versionadded:: 3.16
|
|
|
|
Code snippet which is included verbatim by the :prop_tgt:`UNITY_BUILD`
|
|
feature just before every ``#include`` statement in the generated unity
|
|
source files. For example:
|
|
|
|
.. code-block:: cmake
|
|
|
|
set(before [[
|
|
#if !defined(NOMINMAX)
|
|
#define NOMINMAX
|
|
#endif
|
|
]])
|
|
set_target_properties(myTarget PROPERTIES
|
|
UNITY_BUILD_CODE_BEFORE_INCLUDE "${before}"
|
|
)
|
|
|
|
See also :prop_tgt:`UNITY_BUILD_CODE_AFTER_INCLUDE`.
|