summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraEclipseCDT4Generator.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmExtraEclipseCDT4Generator.h')
-rw-r--r--Source/cmExtraEclipseCDT4Generator.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/Source/cmExtraEclipseCDT4Generator.h b/Source/cmExtraEclipseCDT4Generator.h
index d025c89..aa9da23 100644
--- a/Source/cmExtraEclipseCDT4Generator.h
+++ b/Source/cmExtraEclipseCDT4Generator.h
@@ -52,8 +52,11 @@ public:
virtual void Generate();
private:
+ // create .project file in the source tree
+ void CreateSourceProjectFile() const;
+
// create .project file
- void CreateProjectFile() const;
+ void CreateProjectFile();
// create .cproject file
void CreateCProjectFile() const;
@@ -97,8 +100,16 @@ private:
bool runActionUseDefault,
bool sipParserEnabled);
+ static void AppendLinkedResource (cmGeneratedFileStream& fout,
+ const std::string& name,
+ const std::string& path);
+
+ std::vector<std::string> SrcLinkedResources;
+ std::vector<std::string> OutLinkedResources;
std::string HomeDirectory;
std::string HomeOutputDirectory;
+ bool IsOutOfSourceBuild;
+ bool GenerateSourceProject;
};