diff options
| author | ruki <[email protected]> | 2024-07-23 23:46:08 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-07-23 23:46:08 +0800 |
| commit | 58321e316751cafb3ceb134dbf81a8703e5ea85b (patch) | |
| tree | 196e725ea68bbfd734dc10886addff0561b19298 | |
| parent | 6febdd7a7f7f316cff20837209c1f9b1a4cd886d (diff) | |
fix qt install for mingw
| -rw-r--r-- | xmake/rules/qt/install/mingw.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/qt/install/mingw.lua b/xmake/rules/qt/install/mingw.lua index 79a09065a..9bf282c23 100644 --- a/xmake/rules/qt/install/mingw.lua +++ b/xmake/rules/qt/install/mingw.lua @@ -65,7 +65,7 @@ function main(target, opt) -- add mingw dlls to PATH local envs = nil local mingw = toolchain.load("mingw", {plat = target:plat(), arch = target:arch()}) - if msvc then + if mingw then local bindir = mingw:bindir() if bindir then envs = {PATH = bindir} |
