880db10f55
The code only existed to avoid the auto-generated Q_IMPORT_PLUGIN(QIOSIntegrationPlugin), but nowadays with bitcode enabled the code is not used, plus we end up with this auto-generated file for other plugins anyways. Change-Id: I91c8c88f4e825caab7d7d5250edaba8c57cb7374 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
15 lines
611 B
Plaintext
15 lines
611 B
Plaintext
|
|
qt_depends = $$resolve_depends(QT, "QT.")
|
|
!watchos:equals(TEMPLATE, app):contains(qt_depends, gui(-private)?) {
|
|
!no_main_wrapper {
|
|
# The LC_MAIN load command available in iOS 6.0 and above allows dyld to
|
|
# directly call the entrypoint instead of going through _start in crt.o.
|
|
# Passing -e to the linker changes the entrypoint from _main to our custom
|
|
# wrapper that calls UIApplicationMain and dispatches back to main() once
|
|
# the application has started up and is ready to initialize QApplication.
|
|
QMAKE_LFLAGS += -Wl,-e,_qt_main_wrapper
|
|
}
|
|
}
|
|
|
|
load(qt)
|