summaryrefslogtreecommitdiff
path: root/Help/command/add_link_options.rst
Commit message (Collapse)AuthorAgeFilesLines
* Help: Clarify that {add,target}_compile_options are not used for linkingBrad King2023-03-311-0/+4
| | | | | | Link to alternatives that can be used for adding link options. Issue: #24662
* Help: Move a note about arguments and genexes into include fileAlex Turbov2022-11-091-4/+2
|
* Help: Add _See Also_ sections to related CMake commandsAlex Turbov2022-11-091-0/+7
|
* Help: Add Sphinx 'versionadded' directives to each top-level documentKitware Robot2020-07-061-0/+2
| | | | | | | Run the `Utilities/Sphinx/update_versions.py` script to add initial markup to every top-level document and find module. Issue: #19715
* CUDA: Device linking use now link optionsMarc Chevrier2020-04-191-0/+2
| | | | | | | | | | properties LINK_OPTIONS and INTERFACE_LINK_OPTIONS are propagated to the device link step. To control which options are selected for normal link and device link steps, the $<DEVICE_LINK> and $<HOST_LINK> generator expressions can be used. Fixes: #18265
* Help: Clarify that link options don't apply to static library targetsCraig Scott2019-05-051-6/+11
|
* Merge topic 'doc-updates'Brad King2018-10-261-2/+2
|\ | | | | | | | | | | | | 2f9c253961 Help: clarify "LINKER:" prefix usage Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2530
| * Help: clarify "LINKER:" prefix usageMarc Chevrier2018-10-261-2/+2
| | | | | | | | Fixes: #18503
* | Help: Apply syntax highlighting to project commandsJoachim Wuttke (o)2018-10-251-2/+2
|/ | | | | | * Replace most "::" by ".. code-block:: cmake" * Header sentence in imperative voice, detailed command description in present tense.
* Help: Document when LINK_FLAGS and STATIC_LIBRARY_FLAGS are usedRobert Maynard2018-08-091-1/+1
|
* LINK_OPTIONS: Add support of "LINKER:" prefixMarc Chevrier2018-06-061-4/+6
|
* LINK_OPTIONS: Add new family of propertiesMarc Chevrier2018-06-061-0/+24
This family enable to manage link flags Three new properties: * directory property: LINK_OPTIONS * target properties: LINK_OPTIONS and INTERFACE_LINK_OPTIONS Two new commands * add_link_options(): to populate directory property * target_link_options(): to populate target properties Fixes: #16543