You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+8
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,14 @@ BSD-based systems:
27
27
28
28
* FreeBSD packages: `pkg install webkit2-gtk3`
29
29
* Execution on BSD-based systems may require adding the `wxallowed` option (see [mount(8)](https://man.openbsd.org/mount.8)) to your fstab to bypass [W^X](https://en.wikipedia.org/wiki/W%5EX"write xor execute") memory protection for your executable. Please see if it works without disabling this security feature first.
30
+
31
+
Microsoft Windows:
32
+
33
+
* You should have Visual C++ Build tools already as it's a pre-requisite for crystal compiler
34
+
*`git clone https://github.com/webview/webview` to get WebView sources
35
+
*`webview\script\build.bat` to compile them (it will download required nuget package)
36
+
* copy `webview\dll\x64\webview.lib` to `<your crystal installation>\lib`
37
+
* copy `webview\dll\x64\webview.dll` to directory with your program
Copy file name to clipboardexpand all lines: src/webview.cr
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ require "json"
2
2
3
3
# Crystal bindings for [zserge's Webview](https://github.com/zserge/webview) which is an excellent cross-platform single header webview library for C/C++ using Gtk, Cocoa or MSHTML repectively.
0 commit comments