How to distribute a Gtk-rs program for windows?

Hello,
I have a simple Gtk-rs program for my personal use and I would like to produce a windows compatible binary for it so my friend can use it too. Is there any guide on how to do this?

I have not used Windows for a very long time and I have no access to any windows machine. Which is why I am trying to cross compile my app.

2 Likes

https://gtk-rs.org/docs-src/tutorial/cross describes how to do this. You basically create a zip file that contains the EXE and the DLL files in the same folder (when looking for libraries, Windows will check the same folder that the current executable is in).

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.