diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:50 (GMT) |
commit | b3f0e35308993de825f00ec18fc6559e6609c9b0 (patch) | |
tree | 36a3fd55b874ccebdcf450cbad83b15750b52226 /Source/cmGeneratorTarget.h | |
parent | 34c437411dad89c671261269f2067129584a4259 (diff) | |
download | CMake-b3f0e35308993de825f00ec18fc6559e6609c9b0.zip CMake-b3f0e35308993de825f00ec18fc6559e6609c9b0.tar.gz CMake-b3f0e35308993de825f00ec18fc6559e6609c9b0.tar.bz2 |
cmGeneratorTarget: Move GetCompilePDBDirectory from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 52ab6c0..3dbbca1 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -214,6 +214,12 @@ public: */ void TraceDependencies(); + /** Get the directory in which to place the target compiler .pdb file. + If the configuration name is given then the generator will add its + subdirectory for that configuration. Otherwise just the canonical + compiler pdb output directory is given. */ + std::string GetCompilePDBDirectory(const std::string& config = "") const; + /** Get sources that must be built before the given source. */ std::vector<cmSourceFile*> const* GetSourceDepends(cmSourceFile const* sf) const; |