1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-18 00:02:21 +08:00

Genex: Add generator expressions $<DEVICE_LINK> and $<HOST_LINK>

These generator expressions can only be used in link options properties.
These expressions return the arguments respectively for device and host link
step, otherwise return an empty string.
This commit is contained in:
Marc Chevrier
2020-04-05 17:21:57 +02:00
parent 38332fc4fa
commit 3fdae5acaa
94 changed files with 572 additions and 11 deletions

View File

@@ -87,7 +87,7 @@ void cmExpandLists(InputIt first, InputIt last,
std::vector<std::string>& argsOut)
{
for (; first != last; ++first) {
ExpandList(*first, argsOut);
cmExpandList(*first, argsOut);
}
}