mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
19 lines
557 B
Plaintext
19 lines
557 B
Plaintext
|
|
||
|
# Embed plist file via linker if we're not building a bundle
|
||
|
!isEmpty(QMAKE_INFO_PLIST) {
|
||
|
add_plist = false
|
||
|
equals(TEMPLATE, lib) {
|
||
|
plugin:!plugin_bundle: \
|
||
|
add_plist = true
|
||
|
else: !plugin:!lib_bundle: \
|
||
|
add_plist = true
|
||
|
} else: equals(TEMPLATE, app) {
|
||
|
!app_bundle: \
|
||
|
add_plist = true
|
||
|
}
|
||
|
|
||
|
$$add_plist: \
|
||
|
QMAKE_LFLAGS += -Wl,-sectcreate,__TEXT,__info_plist,$$shell_quote( \
|
||
|
$$relative_path($$absolute_path($$QMAKE_INFO_PLIST, $$_PRO_FILE_PWD_), $$OUT_PWD))
|
||
|
}
|