summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2023-12-06 13:48:52 (GMT)
committerKitware Robot <kwrobot@kitware.com>2023-12-06 13:49:04 (GMT)
commitfb54e957d6a382310c0ec53b3f4d00d04cef6e85 (patch)
treeb0dddffd808fa41ba0853c8c846f1be58ba173ab /Source/cmGeneratorTarget.h
parent71d308f2a4e8653abbe18721bda5add4925ff148 (diff)
parentfc6508921cf291308b7270f19c14d373225bfd37 (diff)
downloadCMake-fb54e957d6a382310c0ec53b3f4d00d04cef6e85.zip
CMake-fb54e957d6a382310c0ec53b3f4d00d04cef6e85.tar.gz
CMake-fb54e957d6a382310c0ec53b3f4d00d04cef6e85.tar.bz2
Merge topic 'imported-implib-only'
fc6508921c cmComputeLinkInformation: Restore soname lookup for non-imported targets 03d86f9d9c cmGeneratorTarget: Add helper to check for known runtime artifact Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Acked-by: Robert Maynard <robertjmaynard@gmail.com> Merge-request: !9041
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r--Source/cmGeneratorTarget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h
index e41edcf..cfb08fa 100644
--- a/Source/cmGeneratorTarget.h
+++ b/Source/cmGeneratorTarget.h
@@ -58,6 +58,7 @@ public:
bool IsImported() const;
bool IsImportedGloballyVisible() const;
bool CanCompileSources() const;
+ bool HasKnownRuntimeArtifactLocation(std::string const& config) const;
const std::string& GetLocation(const std::string& config) const;
/** Get the full path to the target's main artifact, if known. */
@@ -1107,7 +1108,6 @@ private:
std::string SharedDeps;
};
- friend cmComputeLinkInformation;
using ImportInfoMapType = std::map<std::string, ImportInfo>;
mutable ImportInfoMapType ImportInfoMap;
void ComputeImportInfo(std::string const& desired_config,