diff options
author | Brad King <brad.king@kitware.com> | 2017-04-11 18:42:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-04-18 13:03:32 (GMT) |
commit | 930042f2d95e83047231457f4d9134c74b8744fc (patch) | |
tree | cd43b9afbde99909cdbacba853dd49384699d999 /Source/cmGeneratorTarget.h | |
parent | 3ab4681efa6db7339af36218fffea165ad1186f3 (diff) | |
download | CMake-930042f2d95e83047231457f4d9134c74b8744fc.zip CMake-930042f2d95e83047231457f4d9134c74b8744fc.tar.gz CMake-930042f2d95e83047231457f4d9134c74b8744fc.tar.bz2 |
cmGeneratorTarget: Factor out a GetTargetObjectNames method
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 2ea2f2f..bad67d0 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -209,6 +209,11 @@ public: bool realname) const; std::string NormalGetRealName(const std::string& config) const; + /** Get the names of an object library's object files underneath + its object file directory. */ + void GetTargetObjectNames(std::string const& config, + std::vector<std::string>& objects) const; + /** What hierarchy level should the reported directory contain */ enum BundleDirectoryLevel { |