summaryrefslogtreecommitdiffstats
path: root/Source/cmOSXBundleGenerator.h
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2013-06-02 04:47:18 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2013-06-03 12:29:33 (GMT)
commit483e208482ff46532e7ae48659e569580a88af9c (patch)
treefe9d3910326c45e9df4c4129de5daa02a81e3e3c /Source/cmOSXBundleGenerator.h
parent373faae5e1c936351b143b0561c61ef9884303e1 (diff)
downloadCMake-483e208482ff46532e7ae48659e569580a88af9c.zip
CMake-483e208482ff46532e7ae48659e569580a88af9c.tar.gz
CMake-483e208482ff46532e7ae48659e569580a88af9c.tar.bz2
OS X: Fix getting of CFBundle LOCATION property.
This fixes bug #13797. The kinds of changes applied in 373faae5 for frameworks are now applied to CFBundle. The prefix and suffix for CFBundles are now handled in cmTarget::GetFullNameInternal.
Diffstat (limited to 'Source/cmOSXBundleGenerator.h')
-rw-r--r--Source/cmOSXBundleGenerator.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/cmOSXBundleGenerator.h b/Source/cmOSXBundleGenerator.h
index 6cf81d2..ec82b9a 100644
--- a/Source/cmOSXBundleGenerator.h
+++ b/Source/cmOSXBundleGenerator.h
@@ -25,8 +25,6 @@ class cmLocalGenerator;
class cmOSXBundleGenerator
{
public:
- static void PrepareTargetProperties(cmTarget* target);
-
cmOSXBundleGenerator(cmTarget* target,
const char* configName);
@@ -38,9 +36,9 @@ public:
void CreateFramework(const std::string& targetName,
const std::string& root);
- // create a cf bundle at a given root and return the
- // directory within the bundle that contains the library
- void CreateCFBundle(const std::string& targetName, std::string& outpath);
+ // create a cf bundle at a given root
+ void CreateCFBundle(const std::string& targetName,
+ const std::string& root);
struct MacOSXContentGeneratorType
{