Try to install Qt from xmake

This commit is contained in:
Jérôme Leclercq
2021-07-30 11:04:01 +02:00
parent 9b55131787
commit 22e031b533
7 changed files with 6 additions and 11 deletions

View File

@@ -11,7 +11,7 @@ package("qt5widgets")
local qt = base:data("qtdir")
return {
links = table.wrap("Qt5Widgets" .. (package:is_debug() and "d" or "")),
links = table.wrap("Qt5Widgets" .. (package:is_plat("windows") and package:is_debug() and "d" or "")),
linkdirs = table.wrap(qt.libdir),
includedirs = table.wrap(qt.includedir)
}