summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-11-26 19:29:53 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2003-11-26 19:29:53 (GMT)
commit5ccfaefb48758c7af0df011df160add1df1e1b53 (patch)
treeae6202ea94f7a18407752ead032cbe44aa5c7011 /Source/cmMakefile.h
parent945fcb581d2c8f21bd9bc077ccf505ee058fa81d (diff)
downloadCMake-5ccfaefb48758c7af0df011df160add1df1e1b53.zip
CMake-5ccfaefb48758c7af0df011df160add1df1e1b53.tar.gz
CMake-5ccfaefb48758c7af0df011df160add1df1e1b53.tar.bz2
ENH: generate a sln and dsw file for each sub project in a project
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h5
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;