Info.plist.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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>CFBundleExecutable</key>
  6. <string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
  7. <key>CFBundleIconFile</key>
  8. <string>${MACOSX_BUNDLE_ICON_FILE}</string>
  9. <key>CFBundleIdentifier</key>
  10. <string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
  11. <key>CFBundleInfoDictionaryVersion</key>
  12. <string>6.0</string>
  13. <key>CFBundleName</key>
  14. <string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
  15. <key>CFBundlePackageType</key>
  16. <string>APPL</string>
  17. <key>CFBundleShortVersionString</key>
  18. <string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
  19. <key>CFBundleVersion</key>
  20. <string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
  21. <key>CFBundleSupportedPlatforms</key>
  22. <array>
  23. <string>MacOSX</string>
  24. </array>
  25. <key>NSHighResolutionCapable</key>
  26. <true/>
  27. <key>LSMinimumSystemVersion</key>
  28. <string>${CMAKE_OSX_DEPLOYMENT_TARGET}</string>
  29. <key>LSAppNapIsDisabled</key>
  30. <true/>
  31. <key>NSCameraUsageDescription</key>
  32. <string>OBS needs to access the camera to enable camera sources to work.</string>
  33. <key>NSMicrophoneUsageDescription</key>
  34. <string>OBS needs to access the microphone to enable audio input.</string>
  35. <key>NSHumanReadableCopyright</key>
  36. <string>(c) 2012-${CURRENT_YEAR} Lain Bailey</string>
  37. </dict>
  38. </plist>