Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Winterreisender committed Feb 10, 2023
1 parent 82c7ccc commit c611d47
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ cd myproject

```lua
add_repositories("webview-xmake https://github.com/Winterreisender/webview-xmake.git")
add_requires("webview")
add_requires("webview 0.10.0.230210")
if is_plat("linux") then
add_requires("pkgconfig::gtk+-3.0", "pkgconfig::webkit2gtk-4.0", {system = true})
end
Expand Down
4 changes: 4 additions & 0 deletions packages/w/webview/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ package("webview")
set_license("MIT")

set_urls("https://github.com/webview/webview.git")

-- Add new versions ABOVE
add_versions("0.10.0.230210", "7b40e46d97e953a426ff553f92f2cc901cbf8bf9")
add_versions("0.10.0.230202", "14f8e24a873c7e8deb2b1dd29c8e5841529fe467")

if is_plat("windows") or is_plat("mingw") then
Expand All @@ -18,4 +21,5 @@ package("webview")
on_test(function (package)
-- assert(package:has_cfuncs("webview_create", {includes = "webview.h"}))
end)

package_end()
2 changes: 1 addition & 1 deletion source/xmake.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
add_repositories("webview-xmake ..")

add_requires("webview 0.10.0.230210")
add_requires("webview")
if is_plat("linux") then
add_requires("pkgconfig::gtk+-3.0", "pkgconfig::webkit2gtk-4.0", {system = true})
end
Expand Down

0 comments on commit c611d47

Please sign in to comment.