diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2023-05-10 09:40:37 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2023-05-11 08:24:18 (GMT) |
commit | ad9020a89922eff4b817ba6278d31a412cc17601 (patch) | |
tree | 5bc482a6739d3c48a0c2bfc38bf29ebcff51601a /Source/cmLinkLineComputer.h | |
parent | 65430031a61105f9c8bae57e3731fe133e931b11 (diff) | |
download | CMake-ad9020a89922eff4b817ba6278d31a412cc17601.zip CMake-ad9020a89922eff4b817ba6278d31a412cc17601.tar.gz CMake-ad9020a89922eff4b817ba6278d31a412cc17601.tar.bz2 |
Apple Frameworks: honor SYSTEM target property
Fixes: #24109
Diffstat (limited to 'Source/cmLinkLineComputer.h')
-rw-r--r-- | Source/cmLinkLineComputer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmLinkLineComputer.h b/Source/cmLinkLineComputer.h index 9fb222c..4e285f2 100644 --- a/Source/cmLinkLineComputer.h +++ b/Source/cmLinkLineComputer.h @@ -9,6 +9,7 @@ #include <vector> #include "cmStateDirectory.h" +#include "cmValue.h" class cmComputeLinkInformation; class cmGeneratorTarget; @@ -43,7 +44,8 @@ public: std::vector<BT<std::string>>& linkPath); std::string ComputeFrameworkPath(cmComputeLinkInformation& cli, - std::string const& fwSearchFlag); + cmValue fwSearchFlag, + cmValue sysFwSearchFlag); std::string ComputeLinkLibraries(cmComputeLinkInformation& cli, std::string const& stdLibString); |