Skip to content

Commit

Permalink
build: Remove redundant suffix for debug build on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
GooRoo committed Nov 17, 2024
1 parent 3ccbb2a commit a8dcecf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/easy/deployqt/deployqt.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,7 @@ function getLibFilesForQtModule(Qt, mod) {
if (qbs.targetOS.contains('windows')) {
const dir = Qt.core.binPath
const basename = FileInfo.baseName(Qt[mod].libNameForLinker)
const suffix = qbs.buildVariant === 'debug' ? 'd' : ''
const libPath = FileInfo.joinPaths(dir, basename + suffix + '.dll')
const libPath = FileInfo.joinPaths(dir, basename + '.dll')
list.push(libPath)
} else if (Qt.core.frameworkBuild) {
const fp = Qt[mod].libFilePathRelease
Expand Down

0 comments on commit a8dcecf

Please sign in to comment.