mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 04:00:30 +08:00
5dd598fc6d
This version uses CMake to generate Info.plist, which should be more reliable than the old approach.
19 lines
587 B
XML
19 lines
587 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>CFBundleName</key>
|
|
<string>OpenCV</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.opencv</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>${OPENCV_LIBVERSION}</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>${OPENCV_LIBVERSION}</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>FMWK</string>
|
|
</dict>
|
|
</plist>
|