Info.plist.cmake 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>NSPrincipalClass</key>
  6. <string>NSApplication</string>
  7. <key>CFBundleAllowMixedLocalizations</key>
  8. <true/>
  9. <key>CFBundleDevelopmentRegion</key>
  10. <string>English</string>
  11. <key>CFBundleDisplayName</key>
  12. <string>${PROJECT_NAME}</string>
  13. <key>CFBundleExecutable</key>
  14. <string>${PROGNAME}</string>
  15. <key>CFBundleIconFile</key>
  16. <string>keepassxc.icns</string>
  17. <key>CFBundleIdentifier</key>
  18. <string>org.keepassxc.keepassxc</string>
  19. <key>CFBundleInfoDictionaryVersion</key>
  20. <string>6.0</string>
  21. <key>CFBundleName</key>
  22. <string>${PROJECT_NAME}</string>
  23. <key>CFBundlePackageType</key>
  24. <string>APPL</string>
  25. <key>CFBundleVersion</key>
  26. <string>${KEEPASSXC_VERSION}</string>
  27. <key>CFBundleShortVersionString</key>
  28. <string>${KEEPASSXC_VERSION}</string>
  29. <key>CFBundleSignature</key>
  30. <string>KPXC</string>
  31. <key>CFBundleVersion</key>
  32. <string>${KEEPASSXC_VERSION_NUM}</string>
  33. <key>NSHumanReadableCopyright</key>
  34. <string>Copyright 2016-2020 KeePassXC Development Team</string>
  35. <key>CFBundleDocumentTypes</key>
  36. <array>
  37. <dict>
  38. <key>CFBundleTypeExtensions</key>
  39. <array>
  40. <string>kdbx</string>
  41. </array>
  42. <key>CFBundleTypeIconFile</key>
  43. <string>keepassxc.icns</string>
  44. <key>CFBundleTypeName</key>
  45. <string>KeePassXC Password Database</string>
  46. <key>CFBundleTypeOSTypes</key>
  47. <array>
  48. <string>kdbx</string>
  49. </array>
  50. <key>CFBundleTypeRole</key>
  51. <string>Editor</string>
  52. </dict>
  53. </array>
  54. </dict>
  55. </plist>