mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
10 lines
492 B
Plaintext
10 lines
492 B
Plaintext
|
load(default_post)
|
||
|
|
||
|
!xcodebuild:equals(TEMPLATE, app):!isEmpty(QMAKE_INFO_PLIST) {
|
||
|
# Only link in photo library support if Info.plist contains
|
||
|
# NSPhotoLibraryUsageDescription. Otherwise it will be rejected from AppStore.
|
||
|
plist_path = $$absolute_path($$QMAKE_INFO_PLIST, $$_PRO_FILE_PWD_)
|
||
|
system("/usr/libexec/PlistBuddy -c 'Print NSPhotoLibraryUsageDescription' $$system_quote($$plist_path) &>/dev/null"): \
|
||
|
QTPLUGIN += qiosnsphotolibrarysupport
|
||
|
}
|