diff --git a/cmake/doc/cmake/html/_sources/command/add_compile_definitions.rst.txt b/cmake/doc/cmake/html/_sources/command/add_compile_definitions.rst.txt new file mode 100644 index 0000000000000000000000000000000000000000..b2eb2af3b73d059dadd866f635480e901bd70c02 --- /dev/null +++ b/cmake/doc/cmake/html/_sources/command/add_compile_definitions.rst.txt @@ -0,0 +1,33 @@ +add_compile_definitions +----------------------- + +.. versionadded:: 3.12 + +Add preprocessor definitions to the compilation of source files. + +.. code-block:: cmake + + add_compile_definitions( ...) + +Adds preprocessor definitions to the compiler command line. + +The preprocessor definitions are added to the :prop_dir:`COMPILE_DEFINITIONS` +directory property for the current ``CMakeLists`` file. They are also added to +the :prop_tgt:`COMPILE_DEFINITIONS` target property for each target in the +current ``CMakeLists`` file. + +Definitions are specified using the syntax ``VAR`` or ``VAR=value``. +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 values). + +.. versionadded:: 3.26 + Any leading ``-D`` on an item will be removed. + +.. |command_name| replace:: ``add_compile_definitions`` +.. include:: GENEX_NOTE.txt + +See Also +^^^^^^^^ + +* The command :command:`target_compile_definitions` adds target-specific definitions. diff --git a/cmake/doc/cmake/html/_sources/command/add_compile_options.rst.txt b/cmake/doc/cmake/html/_sources/command/add_compile_options.rst.txt new file mode 100644 index 0000000000000000000000000000000000000000..869d0c2ceda3e5db3c0a8d99544695801bdc9644 --- /dev/null +++ b/cmake/doc/cmake/html/_sources/command/add_compile_options.rst.txt @@ -0,0 +1,67 @@ +add_compile_options +------------------- + +Add options to the compilation of source files. + +.. code-block:: cmake + + add_compile_options(