diff options
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 37678e7..28a5c3e 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -252,6 +252,10 @@ public: return m_ProjectName.c_str(); } + std::vector<std::string> const& GetParentProjects() + { + return m_ParentProjects; + } /** * Set the name of the library. */ @@ -630,6 +634,7 @@ protected: std::string m_cmCurrentListFile; std::string m_ProjectName; // project name + std::vector<std::string> m_ParentProjects; // libraries, classes, and executables cmTargets m_Targets; |