7565b73434
Using Visual Studio a user very seldom wants to disable the automatic invocation of windeployqt. Hence switch from opt-in behavior to opt-out. This also fixes first user experience to invoke qmake –tp vc and then hit run on examples. [ChangeLog][Platform Specific Changes][qmake] qmake-generated Visual Studio projects now automatically invoke windeployqt by default. Task-number: QTBUG-52008 Change-Id: Iee1607269c38c7f6c726f554978ac05477bebe5e Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
15 lines
452 B
Plaintext
15 lines
452 B
Plaintext
*msvc2015 {
|
|
# Note that the order is important, ucrt(d) has to be first
|
|
# Otherwise the linker might use malloc from a different library
|
|
# but free_dbg() from the runtime, causing assert when deleting
|
|
# items from different heaps
|
|
CONFIG(debug, debug|release): \
|
|
QMAKE_LIBS = ucrtd.lib $$QMAKE_LIBS
|
|
else: \
|
|
QMAKE_LIBS = ucrt.lib $$QMAKE_LIBS
|
|
}
|
|
|
|
equals(TEMPLATE, "vcapp"): CONFIG += windeployqt
|
|
|
|
load(default_pre)
|