2
0

xmake.lua 395 B

1234567891011121314
  1. package("gtk+3")
  2. set_homepage("https://gtk.org/")
  3. set_description("Toolkit for creating graphical user interfaces")
  4. set_license("LGPL-2.0-or-later")
  5. if on_fetch then
  6. on_fetch("linux", function (package, opt)
  7. if opt.system and package.find_package then
  8. return package:find_package("pkgconfig::gtk+-3.0")
  9. end
  10. end)
  11. end