Skip to content

Commit

Permalink
Merge pull request wang-bin#1357 from ElderOrb/master
Browse files Browse the repository at this point in the history
Qt doesn't use debug suffix for mingw-built libraries, so QtAV shouldn't use it too
  • Loading branch information
wang-bin authored Jan 29, 2021
2 parents add5c5b + fe42d67 commit 74943ea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion common.pri
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ defineReplace(platformTargetSuffix) {
CONFIG(debug, debug|release) {
!debug_and_release|build_pass {
mac: return($${suffix}_debug)
win32: return($${suffix}d)
win32: {
win32-g++: return($${suffix})
!win32-g++: return($${suffix}d)
}
}
}
return($$suffix)
Expand Down

0 comments on commit 74943ea

Please sign in to comment.