diff options
Diffstat (limited to 'Source/cmMakefileExecutableTargetGenerator.h')
-rw-r--r-- | Source/cmMakefileExecutableTargetGenerator.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/cmMakefileExecutableTargetGenerator.h b/Source/cmMakefileExecutableTargetGenerator.h index a9712ca..26dc72f 100644 --- a/Source/cmMakefileExecutableTargetGenerator.h +++ b/Source/cmMakefileExecutableTargetGenerator.h @@ -14,10 +14,13 @@ #include "cmMakefileTargetGenerator.h" +class cmOSXBundleGenerator; + class cmMakefileExecutableTargetGenerator: public cmMakefileTargetGenerator { public: cmMakefileExecutableTargetGenerator(cmTarget* target); + virtual ~cmMakefileExecutableTargetGenerator(); /* the main entry point for this class. Writes the Makefiles associated with this target */ @@ -25,7 +28,9 @@ public: protected: virtual void WriteExecutableRule(bool relink); - void CreateAppBundle(std::string& targetName, std::string& outpath); + +private: + cmOSXBundleGenerator* OSXBundleGenerator; }; #endif |