summaryrefslogtreecommitdiff
path: root/Source/cmMakefileExecutableTargetGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-02-18 16:38:34 -0500
committerBrad King <brad.king@kitware.com>2008-02-18 16:38:34 -0500
commit9ed42663068bc8f5bc2510a2fb19b574c06f3a1f (patch)
tree46768f04a5bc810e9b5abc1011b8ddd7a6bcbd95 /Source/cmMakefileExecutableTargetGenerator.h
parenta3781c85fcaee3f49b95e101317a19594f575c98 (diff)
downloadcmake-9ed42663068bc8f5bc2510a2fb19b574c06f3a1f.tar.gz
ENH: Cleanup impl of PUBLIC_HEADER, PRIVATE_HEADER, and RESOURCE properties
Diffstat (limited to 'Source/cmMakefileExecutableTargetGenerator.h')
-rw-r--r--Source/cmMakefileExecutableTargetGenerator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefileExecutableTargetGenerator.h b/Source/cmMakefileExecutableTargetGenerator.h
index 269fd5f6ae..3111c5c05e 100644
--- a/Source/cmMakefileExecutableTargetGenerator.h
+++ b/Source/cmMakefileExecutableTargetGenerator.h
@@ -22,7 +22,7 @@
class cmMakefileExecutableTargetGenerator: public cmMakefileTargetGenerator
{
public:
- cmMakefileExecutableTargetGenerator();
+ cmMakefileExecutableTargetGenerator(cmTarget* target);
/* the main entry point for this class. Writes the Makefiles associated
with this target */
@@ -30,7 +30,7 @@ public:
protected:
virtual void WriteExecutableRule(bool relink);
-
+ void CreateAppBundle(std::string& targetName, std::string& outpath);
};
#endif