Fix GTK package dependency name on Linux (#5748)

Change the GTK package dependency from "gtk+3" to "gtk3" to match the correct package name
pull/5644/merge
Bowen Liao 2 weeks ago committed by GitHub
parent d281586c21
commit f145085609
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/o/opencv/xmake.lua

@ -112,7 +112,7 @@ package("opencv")
end
if package:is_plat("linux") then
if package:config("gtk") then
package:add("deps", "gtk+3", {optional = true})
package:add("deps", "gtk3", {optional = true})
end
end
if not package:is_precompiled() then

Loading…
Cancel
Save