Skip to content

Commit

Permalink
omit lib prefix for .prl files on all Windows targets
Browse files Browse the repository at this point in the history
to fix build with MinGW
#640
  • Loading branch information
Be-ing committed Jul 31, 2023
1 parent e41cbfe commit 81dd480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/qt-build-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ impl QtBuild {
let target = env::var("TARGET");
let prefix = match &target {
Ok(target) => {
if target.contains("msvc") {
if target.contains("windows") {
""
} else {
"lib"
Expand Down

0 comments on commit 81dd480

Please sign in to comment.