mirror of
https://github.com/textmate/textmate.git
synced 2026-01-11 07:47:55 -05:00
Previously we would automatically pick up an Info.plist file copied using any of the CP_* keys, and both move it to the correct location (when belonging to target built) or ignore it, if we were copying it from an imported target. To simplify the logic in the build system, it is however better to be explicit about this, also because we could actually want an Info.plist file among our copied files.
26 lines
713 B
Plaintext
26 lines
713 B
Plaintext
<?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>CFBundleExecutable</key>
|
|
<string>${TARGET_NAME}</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.macromates.${TARGET_NAME}</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>${TARGET_NAME}</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>XPC!</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
<key>XPCService</key>
|
|
<dict>
|
|
<key>ServiceType</key>
|
|
<string>Application</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|