diff options
author | Brad King <brad.king@kitware.com> | 2014-02-24 19:09:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-02-24 19:12:31 (GMT) |
commit | 718a9532c6bfa8c68864dd5dadba9f55e0f1bcf3 (patch) | |
tree | 0979aaa9b04e2db559be508e55229f66dfa5d572 /Source/cmTarget.h | |
parent | aae5184c169b037c027d4ede5ba42c37395ba7b4 (diff) | |
download | CMake-718a9532c6bfa8c68864dd5dadba9f55e0f1bcf3.zip CMake-718a9532c6bfa8c68864dd5dadba9f55e0f1bcf3.tar.gz CMake-718a9532c6bfa8c68864dd5dadba9f55e0f1bcf3.tar.bz2 |
cmTarget: Refactor ComputePDBOutputDir interface
Add a runtime parameter to specify the property name prefix.
Update the call site to pass "PDB" to preserve the existing
name for that call path.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 599e85d..7683253 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -710,7 +710,8 @@ private: OutputInfo const* GetOutputInfo(const char* config) const; bool ComputeOutputDir(const char* config, bool implib, std::string& out) const; - bool ComputePDBOutputDir(const char* config, std::string& out) const; + bool ComputePDBOutputDir(const char* kind, const char* config, + std::string& out) const; // Cache import information from properties for each configuration. struct ImportInfo; |