Skip to content

Commit fe42d67

Browse files
committed
Qt doesn't use debug suffix for mingw-built libraries, so QtAV shouldn't use it too
1 parent 6576719 commit fe42d67

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

common.pri

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,10 @@ defineReplace(platformTargetSuffix) {
109109
CONFIG(debug, debug|release) {
110110
!debug_and_release|build_pass {
111111
mac: return($${suffix}_debug)
112-
win32: return($${suffix}d)
112+
win32: {
113+
win32-g++: return($${suffix})
114+
!win32-g++: return($${suffix}d)
115+
}
113116
}
114117
}
115118
return($$suffix)

0 commit comments

Comments
 (0)