diff options
author | Brad King <brad.king@kitware.com> | 2014-02-21 14:25:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-02-24 18:44:24 (GMT) |
commit | b4aac0caca76c7d2041556785799b5ea1bbf1ce7 (patch) | |
tree | 111998344d4947512e6f1317704aab1fd41f9812 /Source/cmTarget.h | |
parent | fb5b48bb2741424e184cfa1c5e8026372714df96 (diff) | |
download | CMake-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.h | 4 |
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; |