mindoverflow
mindoverflow

Reputation: 926

Setting up GTK for C application development on Windows without MYSYS2 or gvsbuild

In order for me to program my application on Windows with GTK, The official website instructs me to install MYSYS2 and then use pacman to install the required files.

As I understand it, currently I would still have to compile the application using a Linux environment for GTK+ to be compiled into the application.

Upvotes: 1

Views: 1244

Answers (1)

Jack Lilhammers
Jack Lilhammers

Reputation: 1247

This could be useful https://github.com/Wesley-Chan/GTK-for-Windows.

There is also Quod Libet's README for Windows development and that could help you.

However, historically Gtk has not been the most friendly toolkit for cross platform development, so if you need good Windows support I'd suggest you use Qt.

That said, Gtk has a better license and hopefully with Gtk 4 cross platform support is going to improve.

Upvotes: 2

Related Questions