mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
The default Info.plist template provided by CMake doesn't have this key, and CMake only has minimal support for settingstypically found in this file. In order to specify NSPrincipalClass, we need to provide the whole Info.plist instead. Info.plist is also specified as a dependancy to the application so that it will appear in the project explorer, and changes to this file will trigger a rebuild.
36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//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>rpi-imager</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string></string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>rpi-imager.icns</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.raspberrypi.imagingutility</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleLongVersionString</key>
|
|
<string></string>
|
|
<key>CFBundleName</key>
|
|
<string>Raspberry Pi Imager</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string></string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>CFBundleVersion</key>
|
|
<string></string>
|
|
<key>CSResourcesFileMapped</key>
|
|
<true/>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string></string>
|
|
<key>NSPrincipalClass</key>
|
|
<string>NSApplication</string>
|
|
</dict>
|
|
</plist>
|