aboutsummaryrefslogtreecommitdiffstats
path: root/xcode/Samples/FrameworkSample/Info.plist
diff options
context:
space:
mode:
authorshiqian <shiqian@861a406c-534a-0410-8894-cb66d6ee9925>2008-08-20 17:43:12 +0000
committershiqian <shiqian@861a406c-534a-0410-8894-cb66d6ee9925>2008-08-20 17:43:12 +0000
commitc6e674dbb35e2fbe89b6f97ee6d197ff0dcdd804 (patch)
tree250da956d1e35d19602371ec2b330d6fb135a6ca /xcode/Samples/FrameworkSample/Info.plist
parentd5f13d4a257b6bfc43068f3a918989cf89af75ec (diff)
downloadgoogletest-c6e674dbb35e2fbe89b6f97ee6d197ff0dcdd804.tar.gz
googletest-c6e674dbb35e2fbe89b6f97ee6d197ff0dcdd804.tar.bz2
googletest-c6e674dbb35e2fbe89b6f97ee6d197ff0dcdd804.zip
Adds a sample on using Google Test as a Mac framework. By Preston Jackson.
Diffstat (limited to 'xcode/Samples/FrameworkSample/Info.plist')
-rw-r--r--xcode/Samples/FrameworkSample/Info.plist28
1 files changed, 28 insertions, 0 deletions
diff --git a/xcode/Samples/FrameworkSample/Info.plist b/xcode/Samples/FrameworkSample/Info.plist
new file mode 100644
index 00000000..f3852ede
--- /dev/null
+++ b/xcode/Samples/FrameworkSample/Info.plist
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//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>${EXECUTABLE_NAME}</string>
+ <key>CFBundleIconFile</key>
+ <string></string>
+ <key>CFBundleIdentifier</key>
+ <string>com.google.gtest.${PRODUCT_NAME:identifier}</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>${PRODUCT_NAME}</string>
+ <key>CFBundlePackageType</key>
+ <string>FMWK</string>
+ <key>CFBundleShortVersionString</key>
+ <string>1.0</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>1.0</string>
+ <key>CSResourcesFileMapped</key>
+ <true/>
+</dict>
+</plist>