WPullen
WPullen

Reputation: 85

How to install Glade 3.22 on Windows 10?

I'm trying to figure out how to install Glade on Windows, but I can't find anything helpful (I have never dealt with manual installs before so if that's required, please point me to a walkthrough).

The Glade homepage (https://glade.gnome.org/index.html) seems dead, broken links everywhere and the sources and binaries links only contains old versions of Glade.

I finally found where to download the latest on the wiki: https://wiki.gnome.org/Apps/Glade

But that gives me a .flatpakref file that I have no idea what to do with on my Windows machine.

I also found the up-to-date source files (https://download.gnome.org/sources/glade/), but again I'm not familiar with manual installations so I don't know what to do with that, and the "INSTALL" help file in there makes little to no sense...

Is there no longer any support for Glade on Windows, do I just need to install a virtual machine for Linux and and install it there?

Thanks in advance!

Upvotes: 5

Views: 18815

Answers (3)

Valerio
Valerio

Reputation: 364

here you can find an updated (3.40.0) version of Glade build for Win64 with all deps: https://gitlab.gnome.org/GNOME/glade/uploads/86727531bbfe8b0bc60b8d6a01765e75/glade3.40_Win64_UCRT64_20230912.7z

Upvotes: 0

Ensai Tankado
Ensai Tankado

Reputation: 343

Here you can find a Windows Build with all needed dependencies...

https://github.com/subabrain/gladeui-3.4.0-windows

or just use msys2 and download the gladeui package and then just go to the bin folder and start gladeui.exe

Upvotes: 2

liberforce
liberforce

Reputation: 11454

GTK development on Windows is mostly done through vcpkg or MSYS2 packages, as stated in the GTK installation instructions for Windows. Once you have a package manager, you can just use the package manager to install the latest glade version. I never did it with vcpkg, but the instructions to install Glade from MSYS2 are on that page (just search "glade" there).

If you chose the MSYS2 way, you will then easily install Glade with:

pacman -S mingw-w64-x86_64-glade

Upvotes: 10

Related Questions