summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-06-13 17:49:24 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-06-13 17:49:24 (GMT)
commit521e301116481f9f9396ee3fa13b8c1b87274d8c (patch)
treeeb1ff8a59eff9b23996aa09f348dab0ef8eb8154 /Source/cmTarget.h
parent03817a41cfc48707852e30d57f608f90d4f74427 (diff)
downloadCMake-521e301116481f9f9396ee3fa13b8c1b87274d8c.zip
CMake-521e301116481f9f9396ee3fa13b8c1b87274d8c.tar.gz
CMake-521e301116481f9f9396ee3fa13b8c1b87274d8c.tar.bz2
minor cvs web changeCMakeLists.txt
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;