summaryrefslogtreecommitdiff
path: root/Source/cmTargetLinkDirectoriesCommand.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Refactor: Convert parallel string/backtrace vectors to BT vectorsKyle Edwards2021-09-031-1/+2
|
* cmTarget*: Port away from cmCommandRegina Pfeifer2019-09-261-21/+32
|
* Refactor: Use cmStrCat to construct error stringsAsit Dhal2019-09-181-6/+4
| | | | | Replace string construction using std::stringstream with cmStrCat and cmWrap.
* cmStringAlgorithms: Move string functions to the new cmStringAlgorithms.hSebastian Holtermann2019-07-291-1/+1
| | | | | This adds the `cmStringAlgorithms.h` header and moves all string functions from `cmAlgorithms.h` to `cmStringAlgorithms.h`.
* Factor out enum MessageType into dedicated headerBruno Manganelli2019-01-161-2/+2
| | | | Reduce the number of files relying on `cmake.h`.
* LINK_DIRECTORIES: Add new properties and commandsMarc Chevrier2018-09-251-0/+61
These new capabilities enable to manage link directories Two new properties: * target properties: LINK_DIRECTORIES and INTERFACE_LINK_DIRECTORIES One new command * target_link_directories(): to populate target properties Fixes: #17215