Skip to content

Commit

Permalink
qt6: fix mingw debug lib names
Browse files Browse the repository at this point in the history
fixes #15425
  • Loading branch information
ericLemanissier authored Jan 23, 2023
1 parent 74d000e commit b9aa313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/qt/6.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ def _add_build_module(component, module):

libsuffix = ""
if self.settings.build_type == "Debug":
if self.settings.os == "Windows":
if is_msvc(self):
libsuffix = "d"
if is_apple_os(self):
libsuffix = "_debug"
Expand Down

0 comments on commit b9aa313

Please sign in to comment.