xmake.lua 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package("raylib")
  2. set_homepage("http://www.raylib.com")
  3. set_description("A simple and easy-to-use library to enjoy videogames programming.")
  4. if is_plat("macosx") and is_arch("x86_64") then
  5. add_urls("https://github.com/raysan5/raylib/releases/download/$(version).tar.gz", {version = function (version)
  6. if version:ge("3.5.0") then
  7. return version .. "/raylib-" .. version .. "_macos"
  8. else
  9. return version .. "/raylib-" .. version .. "-macOS"
  10. end
  11. end})
  12. add_versions("2.5.0", "e9ebdf70ad4912dc9f3c7965dc702d5c61f2841aeae521e8dd3b0a96a9d82d58")
  13. add_versions("3.0.0", "8244898b09887f29baa9325b5ae47c30ec0f45dc15b4f740178c65af068b3141")
  14. add_versions("3.5.0", "9b9be75fe1b231225c91a6fcf5ed9c24cbf03c6193f917e40e4655ef27f281e2")
  15. add_versions("3.7.0", "439dc1851dd1b7f385f4caf4f5c7191dda90add9d8d531e5e74702315e432003")
  16. add_versions("4.0.0", "be73734815a7ef4eb3130f4a2ecaabb2059602745ae6ce1173201a74034c2ec9")
  17. else
  18. add_urls("https://github.com/raysan5/raylib/archive/$(version).tar.gz",
  19. "https://github.com/raysan5/raylib.git")
  20. add_versions("2.5.0", "fa947329975bdc9ea284019f0edc30ca929535dc78dcf8c19676900d67a845ac")
  21. add_versions("3.0.0", "164d1cc1710bb8e711a495e84cc585681b30098948d67d482e11dc37d2054eab")
  22. add_versions("3.5.0", "761985876092fa98a99cbf1fef7ca80c3ee0365fb6a107ab901a272178ba69f5")
  23. add_versions("3.7.0", "7bfdf2e22f067f16dec62b9d1530186ddba63ec49dbd0ae6a8461b0367c23951")
  24. add_versions("4.0.0", "11f6087dc7bedf9efb3f69c0c872f637e421d914e5ecea99bbe7781f173dc38c")
  25. end
  26. if not (is_plat("macosx") and is_arch("x86_64")) then
  27. add_deps("cmake >=3.11")
  28. end
  29. if is_plat("macosx") then
  30. add_frameworks("CoreVideo", "CoreGraphics", "AppKit", "IOKit", "CoreFoundation", "Foundation")
  31. elseif is_plat("windows", "mingw") then
  32. add_syslinks("gdi32", "user32", "winmm", "shell32")
  33. elseif is_plat("linux") then
  34. add_syslinks("pthread", "dl", "m")
  35. add_deps("libx11", "libxrandr", "libxrender", "libxinerama", "libxcursor", "libxi", "libxfixes", "libxext")
  36. end
  37. add_deps("opengl", {optional = true})
  38. on_install("macosx|x86_64", function (package)
  39. os.cp("include/raylib.h", package:installdir("include"))
  40. os.cp("lib/libraylib.a", package:installdir("lib"))
  41. end)
  42. on_install("windows", "linux", "macosx|arm64", "mingw", function (package)
  43. local configs = {"-DBUILD_EXAMPLES=OFF"}
  44. table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
  45. table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
  46. import("package.tools.cmake").install(package, configs, {packagedeps = {"libx11", "libxrender", "libxrandr", "libxinerama", "libxcursor", "libxi", "libxfixes", "libxext"}})
  47. end)
  48. on_test(function (package)
  49. assert(package:check_cxxsnippets({test = [[
  50. void test() {
  51. InitWindow(100, 100, "hello world!");
  52. Camera camera = { 0 };
  53. UpdateCamera(&camera);
  54. }
  55. ]]}, {includes = {"raylib.h"}}))
  56. end)