summaryrefslogtreecommitdiff
path: root/Modules/MacOSXFrameworkInfo.plist.in
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-05-08 10:32:54 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2007-05-08 10:32:54 -0400
commit9323a2798973b3dbe8ca9725f1cb5c8ff6d5900b (patch)
treeadf91f5e20d08609ec5c83ec09376fdc9e168f46 /Modules/MacOSXFrameworkInfo.plist.in
parent96232d405236231e6f4ba858a70621da9066f26c (diff)
downloadcmake-9323a2798973b3dbe8ca9725f1cb5c8ff6d5900b.tar.gz
ENH: initial support for creation of frameworks on Mac
Diffstat (limited to 'Modules/MacOSXFrameworkInfo.plist.in')
-rw-r--r--Modules/MacOSXFrameworkInfo.plist.in28
1 files changed, 28 insertions, 0 deletions
diff --git a/Modules/MacOSXFrameworkInfo.plist.in b/Modules/MacOSXFrameworkInfo.plist.in
new file mode 100644
index 0000000000..46287aa100
--- /dev/null
+++ b/Modules/MacOSXFrameworkInfo.plist.in
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>English</string>
+ <key>CFBundleExecutable</key>
+ <string>${MACOSX_FRAMEWORK_NAME}</string>
+ <key>CFBundleGetInfoString</key>
+ <string>${MACOSX_FRAMEWORK_INFO_STRING}</string>
+ <key>CFBundleIdentifier</key>
+ <string>${MACOSX_FRAMEWORK_IDENTIFIER}</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundlePackageType</key>
+ <string>FMWK</string>
+ <key>CFBundleShortVersionString</key>
+ <string>${MACOSX_FRAMEWORK_SHORT_VERSION_STRING}</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>${MACOSX_FRAMEWORK_BUNDLE_VERSION}</string>
+ <key>CSResourcesFileMapped</key>
+ <true/>
+ <key>NSHumanReadableCopyright</key>
+ <string>${MACOSX_FRAMEWORK_COPYRIGHT}</string>
+</dict>
+</plist>