xmake.lua 346 B

123456789101112
  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. on_fetch("linux", function (package, opt)
  6. if opt.system and package.find_package then
  7. return package:find_package("pkgconfig::gtk+-3.0")
  8. end
  9. end)