summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/winrt/default_pre.prf
blob: 44e3c94b8a63c2f6f6bdd654c094ba739f7a0734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
*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
}

load(default_pre)