ade8e0fc9b
Refactor the current app CFBundleIdentifier support: handle frameworks as well. Add @BUNDLEIDENTIFIER@ placeholder to the OS X info.plist.lib templates. This means the Qt frameworks will now get a valid CFBundleIdentifier entry the same way as app bundles: by extracting the identifier prefix from Xcode settings and appending framework name. Task-number: QTBUG-32896 Change-Id: Ica8f28332a88e37a823c46fca7a2c373157af020 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
23 lines
735 B
XML
23 lines
735 B
XML
<?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>CFBundlePackageType</key>
|
|
<string>FMWK</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>@SHORT_VERSION@</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>@FULL_VERSION@</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>Created by Qt/QMake</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>@TYPEINFO@</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>@LIBRARY@</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>@BUNDLEIDENTIFIER@</string>
|
|
<key>NOTE</key>
|
|
<string>Please, do NOT change this file -- It was generated by Qt/QMake.</string>
|
|
</dict>
|
|
</plist>
|