summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-02-21 14:25:30 (GMT)
committerBrad King <brad.king@kitware.com>2014-02-24 18:44:24 (GMT)
commitb4aac0caca76c7d2041556785799b5ea1bbf1ce7 (patch)
tree111998344d4947512e6f1317704aab1fd41f9812 /Source/cmTarget.h
parentfb5b48bb2741424e184cfa1c5e8026372714df96 (diff)
downloadCMake-b4aac0caca76c7d2041556785799b5ea1bbf1ce7.zip
CMake-b4aac0caca76c7d2041556785799b5ea1bbf1ce7.tar.gz
CMake-b4aac0caca76c7d2041556785799b5ea1bbf1ce7.tar.bz2
Makefile: Fix per-config linker PDB output directory
Also, now that all call sites of cmTarget::GetPDBName and cmTarget::GetPDBDirectory pass the configuration, make the argument non-optional.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 271824b..599e85d 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -340,7 +340,7 @@ public:
If the configuration name is given then the generator will add its
subdirectory for that configuration. Otherwise just the canonical
pdb output directory is given. */
- std::string GetPDBDirectory(const char* config = 0) const;
+ std::string GetPDBDirectory(const char* config) const;
/** Get the location of the target in the build tree for the given
configuration. This location is suitable for use as the LOCATION
@@ -375,7 +375,7 @@ public:
const char* config=0, bool implib = false) const;
/** Get the name of the pdb file for the target. */
- std::string GetPDBName(const char* config=0) const;
+ std::string GetPDBName(const char* config) const;
/** Whether this library has soname enabled and platform supports it. */
bool HasSOName(const char* config) const;