diff options
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index de70c49..afe2862 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -215,7 +215,7 @@ public: should be called only on a library target. */ void GetLibraryNames(std::string& name, std::string& soName, std::string& realName, std::string& impName, - const char* config); + std::string& pdbName, const char* config); /** Get the names of the library used to remove existing copies of the library from the build tree either before linking or during @@ -226,20 +226,21 @@ public: std::string& sharedSOName, std::string& sharedRealName, std::string& importName, + std::string& pdbName, const char* config); /** Get the names of the executable needed to generate a build rule that takes into account executable version numbers. This should be called only on an executable target. */ void GetExecutableNames(std::string& name, std::string& realName, - const char* config); + std::string& pdbName, const char* config); /** Get the names of the executable used to remove existing copies of the executable from the build tree either before linking or during a clean step. This should be called only on an executable target. */ void GetExecutableCleanNames(std::string& name, std::string& realName, - const char* config); + std::string& pdbName, const char* config); /** * Compute whether this target must be relinked before installing. @@ -319,10 +320,12 @@ private: std::string& soName, std::string& realName, std::string& impName, + std::string& pdbName, TargetType type, const char* config); void GetExecutableNamesInternal(std::string& name, std::string& realName, + std::string& pdbName, TargetType type, const char* config); |