summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/GenEx-LINK_LIBRARY
Commit message (Collapse)AuthorAgeFilesLines
* Check link libraries properties: fix performances regressionMarc Chevrier2022-09-071-2/+2
| | | | Fixes: #23939
* Genex LINK_LIBRARY and LINK_GROUP: check supported propertiesMarc Chevrier2022-07-0610-6/+34
| | | | | | | Refines check for properties supporting these genex. Enhance error message. Fixes: #23699
* genex-LINK_(LIBRARY|GROUP) features: update variables behaviorMarc Chevrier2022-03-254-0/+19
| | | | | | | | Variable CMAKE_LINK_(LIBRARY|GROUP)_USING_<FEATURE>_SUPPORTED is evaluated only if CMAKE_<LANG>_LINK_(LIBRARY|GROUP)_USING_<FEATURE>_SUPPORTED is not defined. This new behavior enable to activate a feature globally on a platform and to disable it for some compilers and languages.
* Genex-LINK_GROUP: Add possibility to group libraries at link stepMarc Chevrier2022-02-284-0/+16
| | | | Fixes: #23121
* genex-LINK_LIBRARY: rename configuration variablesMarc Chevrier2022-02-1623-53/+53
| | | | | | To be more consistent between genex and variables as well as the forecomming LINK_GROUP genex, rename variable *_LINK_USING_<FEATURE>* in *_LINK_LIBRARY_USING_<FEATURE>*
* $<LINK_LIBRARY>: Add LINK_LIBRARY_OVERRIDE target propertyMarc Chevrier2022-02-0816-4/+94
| | | | | | To enable the management of incompatible $<LINK_LIBRARY> declarations, add LINK_LIBRARY_OVERRIDE and LINK_LIBRARY_OVERRIDE_<LIBRARY> target properties.
* Genex: Add $<LINK_LIBRARY:...>Marc Chevrier2022-02-0867-0/+414
This generator expression offers the capability, for the link step, to decorate libraries with prefix/suffix flags and/or adding any specific flag for each library. Fixes: #22812, #18751, #20078, #22703