12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package("glfw3webgpu")
- set_description("An extension for the GLFW library for using WebGPU native.")
- set_homepage("https://github.com/eliemichel/glfw3webgpu")
- set_license("MIT")
-
- add_urls("https://github.com/eliemichel/glfw3webgpu/archive/refs/tags/$(version).tar.gz",
- "https://github.com/eliemichel/glfw3webgpu.git")
- add_versions("v1.3.0-alpha", "608386a158a22636756dd44932f25675a68f190552481f48d45d63573edd5f2b")
- add_versions("v1.2.0", "28387b960aff573728bde2bf0fa876c33608cdadaca8d23f4a46cd31920ab633")
- add_versions("v1.1.0", "307ba86a724adc84a875e8bd2374baad0fabc77797f20f9a1779eef8d9ffe95a")
- add_versions("v1.0.1", "b98c63f1905f0e4cf99229de8b7e5c2693fdf3b8d684b5a43d60f21f67d33e6b")
- add_deps("wgpu-native", "glfw")
- if is_plat("macosx", "iphoneos") then
- add_frameworks("Metal", "Foundation", "QuartzCore")
- end
- on_install("windows|x64", "windows|x86", "linux|x86_64", "macosx|x86_64", "macosx|arm64", function (package)
- if package:is_plat("macosx", "iphoneos") then
- os.mv("glfw3webgpu.c", "glfw3webgpu.m")
- end
- local configs = {}
- local glfw = package:dep("glfw")
- if glfw then
- if glfw:config("x11") then
- configs.x11 = true
- end
- if glfw:config("wayland") then
- configs.wayland = true
- end
- end
- io.writefile("xmake.lua", [[
- add_rules("mode.debug", "mode.release")
- option("x11", {default = false})
- option("wayland", {default = false})
- add_requires("wgpu-native", "glfw")
- target("glfw3webgpu")
- set_kind("$(kind)")
- set_languages("c11")
- add_headerfiles("glfw3webgpu.h")
-
- add_mxflags("-fno-objc-arc")
-
- add_packages("wgpu-native")
- add_packages("glfw")
-
- if is_plat("iphoneos", "macosx") then
- add_frameworks("Metal", "Foundation", "QuartzCore")
- add_files("glfw3webgpu.m")
- else
- add_files("glfw3webgpu.c")
- end
-
- if is_plat("windows") and is_kind("shared") then
- add_rules("utils.symbols.export_all")
- end
- if is_plat("windows") then
- add_defines("GLFW_EXPOSE_NATIVE_WIN32")
- elseif is_plat("macosx", "iphoneos") then
- add_defines("GLFW_EXPOSE_NATIVE_COCOA")
- end
- if has_config("x11") then
- add_defines("GLFW_EXPOSE_NATIVE_X11")
- elseif has_config("wayland") then
- add_defines("GLFW_EXPOSE_NATIVE_WAYLAND")
- end
- ]])
- import("package.tools.xmake").install(package, configs)
- end)
- on_test(function (package)
- if package:version() and package:version():minor() >= 3 then
- assert(package:has_cfuncs("glfwCreateWindowWGPUSurface", {includes = "glfw3webgpu.h"}))
- else
- assert(package:has_cfuncs("glfwGetWGPUSurface", {includes = "glfw3webgpu.h"}))
- end
- end)
|