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 authored and ahayzen-kdab committed Aug 1, 2023
1 parent 45c323a commit 48bd4c2
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 48bd4c2

Please sign in to comment.