summaryrefslogtreecommitdiffstats
path: root/misc/dist/macos_template.app/Contents/Info.plist
blob: 708498dd9c4e3856c75f7c105aa502ea9cd17c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?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>$binary</string>
	<key>CFBundleName</key>
	<string>$name</string>
	<key>CFBundleDisplayName</key>
	<string>$name</string>
	<key>CFBundleIconFile</key>
	<string>icon.icns</string>
	<key>CFBundleIdentifier</key>
	<string>$bundle_identifier</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>$short_version</string>
	<key>CFBundleSignature</key>
	<string>$signature</string>
	<key>CFBundleVersion</key>
	<string>$version</string>
	<key>DTPlatformBuild</key>
	<string>$platfbuild</string>
	<key>DTPlatformName</key>
	<string>macosx</string>
	<key>DTPlatformVersion</key>
	<string>$sdkver</string>
	<key>DTSDKBuild</key>
	<string>$sdkbuild</string>
	<key>DTSDKName</key>
	<string>$sdkname</string>
	<key>DTXcode</key>
	<string>$xcodever</string>
	<key>DTXcodeBuild</key>
	<string>$xcodebuild</string>
$usage_descriptions
	<key>NSHumanReadableCopyright</key>
	<string>$copyright</string>
	<key>CFBundleSupportedPlatforms</key>
	<array>
		<string>MacOSX</string>
	</array>
	<key>NSPrincipalClass</key>
	<string>NSApplication</string>
	<key>LSApplicationCategoryType</key>
	<string>public.app-category.$app_category</string>
	<key>LSArchitecturePriority</key>
	<array>
		<string>arm64</string>
		<string>x86_64</string>
	</array>
	<key>LSMinimumSystemVersionByArchitecture</key>
	<dict>
		<key>arm64</key>
		<string>$min_version_arm64</string>
		<key>x86_64</key>
		<string>$min_version_x86_64</string>
	</dict>
	<key>NSHighResolutionCapable</key>
$highres
$additional_plist_content
</dict>
</plist>