summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-03-17 16:49:38 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-03-31 21:18:43 (GMT)
commitd38423ecc4105d8339b7461130b964f3c69e8847 (patch)
treed50ed49f334a7fc5518b4e64576c83a04ef1c951 /Source/cmTarget.h
parentb1cbba68ce44bf8d78a6e41ff465461f0abf83a9 (diff)
downloadCMake-d38423ecc4105d8339b7461130b964f3c69e8847.zip
CMake-d38423ecc4105d8339b7461130b964f3c69e8847.tar.gz
CMake-d38423ecc4105d8339b7461130b964f3c69e8847.tar.bz2
cmTarget: Add a method to obtain list of filenames for sources.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index e385443..8df9bd8 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -135,6 +135,7 @@ public:
/**
* Get the list of the source files used by this target
*/
+ void GetSourceFiles(std::vector<std::string> &files) const;
void GetSourceFiles(std::vector<cmSourceFile*> &files) const;
void AddSourceFile(cmSourceFile* sf);
std::vector<std::string> const& GetObjectLibraries() const