summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 7b8c2ba..5054f2d 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -119,9 +119,8 @@ public:
/**
* Get the list of the source files used by this target
*/
- std::vector<cmSourceFile*> const &GetSourceFiles()
- {return this->SourceFiles;}
- void AddSourceFile(cmSourceFile* sf) { this->SourceFiles.push_back(sf); }
+ std::vector<cmSourceFile*> const& GetSourceFiles();
+ void AddSourceFile(cmSourceFile* sf);
/**
* Flags for a given source file as used in this target. Typically assigned
@@ -531,6 +530,7 @@ private:
std::vector<cmCustomCommand> PostBuildCommands;
TargetType TargetTypeValue;
std::vector<cmSourceFile*> SourceFiles;
+ std::set<cmSourceFile*> SourceFileSet;
LinkLibraryVectorType LinkLibraries;
LinkLibraryVectorType PrevLinkedLibraries;
bool LinkLibrariesAnalyzed;