Reputation: 945
On windows I use Vala via MSYS2. How do I properly package the application so that it can run on another computer(along with Gtk). What and where windows should be placed from MSYS2 dll to exe you can run from anywhere?
Upvotes: 0
Views: 241
Reputation: 4289
You are using MSYS2 so you could try a three staged approach:
PKGBUILD
file and use makepkg-mingw
to build a MSYS2 package of your applicationSome references:
Upvotes: 3