diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2019-04-03 15:27:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-04-08 11:49:08 (GMT) |
commit | 1889ed923ea8c2dd204ca38b8109efdf1963c578 (patch) | |
tree | 85921aa33294bc3b2d488a5ba4ad84882128782b /Source/cmGeneratorTarget.h | |
parent | 26b6d2aff0076b44fac605de0d3dbfc3f55e64fb (diff) | |
download | CMake-1889ed923ea8c2dd204ca38b8109efdf1963c578.zip CMake-1889ed923ea8c2dd204ca38b8109efdf1963c578.tar.gz CMake-1889ed923ea8c2dd204ca38b8109efdf1963c578.tar.bz2 |
Genex: Add capability to retrieve base name for various target artifacts
This new capability is required to solve efficiently issue #18771
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 3f2025e..065b457 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -503,6 +503,9 @@ public: OutputInfo const* GetOutputInfo(const std::string& config) const; + // Get the target PDB base name. + std::string GetPDBOutputName(const std::string& config) const; + /** Get the name of the pdb file for the target. */ std::string GetPDBName(const std::string& config = "") const; |