diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2015-02-26 20:55:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-03-23 13:12:20 (GMT) |
commit | 87a4b8580cad34fefa5c5e1833b0963a6bcf3e7d (patch) | |
tree | 017d4c10af4a7f216f34672f165913033bc38377 /Tests/XCTest/CocoaExample/Info.plist | |
parent | ba14510b4ebdbbfe115e29111615a4b775fb7198 (diff) | |
download | CMake-87a4b8580cad34fefa5c5e1833b0963a6bcf3e7d.zip CMake-87a4b8580cad34fefa5c5e1833b0963a6bcf3e7d.tar.gz CMake-87a4b8580cad34fefa5c5e1833b0963a6bcf3e7d.tar.bz2 |
Tests: Add XCTest example to test Frameworks and Cocoa App Bundles
Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
Diffstat (limited to 'Tests/XCTest/CocoaExample/Info.plist')
-rw-r--r-- | Tests/XCTest/CocoaExample/Info.plist | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Tests/XCTest/CocoaExample/Info.plist b/Tests/XCTest/CocoaExample/Info.plist new file mode 100644 index 0000000..5267c63 --- /dev/null +++ b/Tests/XCTest/CocoaExample/Info.plist @@ -0,0 +1,30 @@ +<?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>en</string> + <key>CFBundleExecutable</key> + <string>CocoaExample</string> + <key>CFBundleIconFile</key> + <string></string> + <key>CFBundleIdentifier</key> + <string>org.cmake.CocoaExample</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>CocoaExample</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleVersion</key> + <string>1</string> + <key>NSMainNibFile</key> + <string>MainMenu</string> + <key>NSPrincipalClass</key> + <string>NSApplication</string> +</dict> +</plist> |