summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index 89068ed..50d81d7 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -87,6 +87,13 @@ public:
std::vector<std::string> &GetSourceLists() {return m_SourceLists;}
/**
+ * Get the list of the source lists used by this target
+ */
+ const std::vector<std::string> &GetLimitedBuildList() const
+ {return m_LimitedBuildList;}
+ std::vector<std::string> &GetLimitedBuildList() {return m_LimitedBuildList;}
+
+ /**
* Get the list of the source files used by this target
*/
const std::vector<cmSourceFile> &GetSourceFiles() const
@@ -126,7 +133,9 @@ public:
void AddUtility(const char* u) { m_Utilities.insert(u);}
///! Get the utilities used by this target
std::set<std::string>const& GetUtilities() const { return m_Utilities; }
+
private:
+ std::vector<std::string> m_LimitedBuildList;
std::vector<cmCustomCommand> m_CustomCommands;
std::vector<std::string> m_SourceLists;
TargetType m_TargetType;