diff options
author | Brad King <brad.king@kitware.com> | 2007-02-01 21:54:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-02-01 21:54:49 (GMT) |
commit | 4bc0fd0941a97a86b2925562b717597f5ed0a2f4 (patch) | |
tree | 426e9f6ffe79babf1373cc62394ee8282825bde5 /Source/cmTarget.h | |
parent | ed7de15676aa3e1731a16d263ce5113cbb2fe4fc (diff) | |
download | CMake-4bc0fd0941a97a86b2925562b717597f5ed0a2f4.zip CMake-4bc0fd0941a97a86b2925562b717597f5ed0a2f4.tar.gz CMake-4bc0fd0941a97a86b2925562b717597f5ed0a2f4.tar.bz2 |
ENH: Added cmTarget::GetPDBName method to simplify computation of .pdb file name for a target.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index afe2862..3e7d838 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -205,6 +205,9 @@ public: void GetFullName(std::string& prefix, std::string& base, std::string& suffix, const char* config=0, bool implib = false); + + /** Get the name of the pdb file for the target. */ + std::string GetPDBName(const char* config=0); /** Get the full path to the target according to the settings in its makefile and the configuration type. */ |