diff options
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 412d3ac..792d8e1 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -90,9 +90,10 @@ public: ///! set/get the parent generator cmLocalGenerator* GetParent(){return m_Parent;} void SetParent(cmLocalGenerator* g) { m_Parent = g;} + protected: virtual void AddInstallRule(std::ostream& fout, const char* dest, int type, - const char* files, bool optional = false); + const char* files, bool optional = false, const char* properties = 0); bool m_FromTheTop; cmMakefile *m_Makefile; |