Adding Info.plist to allow custom stuff on MacOS
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ad5001 2021-07-11 22:10:55 +02:00
parent 6b37163f30
commit 6d8a1de641

24
mac/Info.plist Normal file
View file

@ -0,0 +1,24 @@
<?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>CFBundleDisplayName</key>
<string>LogarithmPlotter</string>
<key>CFBundleExecutable</key>
<string>MacOS/LogarithmPlotter</string>
<key>CFBundleIconFile</key>
<string>logarithmplotter.icns</string>
<key>CFBundleIdentifier</key>
<string>eu.ad5001.logarithmplotter</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>LogarithmPlotter</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.0.0</string>
<key>NSHighResolutionCapable</key>
<true/>
</dict>
</plist>