Skip to content

pbor/gtk-win32

 
 

Repository files navigation

Goals

This powershell script helps you build a full GTK+ library stack for Windows using Visual Studio.

The script was developed by the HexChat developers, make sure to check their page for more information about the original script.

HexChat developers decided that their script should focus on their specific needs, this fork tries to be a bit more generic, in particular it pursues the following goals

  1. Build GTK+ 3 - we want to focus on the current version of GTK
  2. Support multiple version of Visual Studio - at the moment we are focusing on VS 2013, but we include projects for other versions and we gladly accept patches
  3. We try to follow as much as possible the conventions of the upstream MSVC projects by Fan Chun-wei - Compiling the GTK+ (and Clutter) stack using Visual C++ 2008 and later.
  4. We are pretty liberal about adding more libraries to the script - at some point we will need to make the set of libraries that are built configurable and easily extensible, but right now we are ok with adding libraries that are useful to the users of this script
  5. We try to fetch tarballs from their original locations - if patches are needed we try to fork the project on github and host a patched tarball there

Building

  1. Install the following build tools and dependencies:

  2. Follow the instructions on the msys2 page to update the core packages.

  3. Install needed packages in the msys2 shell

    pacman -S gzip nasm patch tar xz gettext make coreutils
  4. Clone this repository to C:\gtk-build\github\gtk-win32 It contains the build script, project files and patches.

  5. Now you have to allow PowerShell scripts to be run on your system. Open a PowerShell prompt as Administrator and run the following command:

    Set-ExecutionPolicy RemoteSigned
  6. Now start a new PowerShell window as a regular user. Go to the gtk-win32 directory and start building with the script. For example, to build the 32-bit bundle, run:

    cd C:\gtk-build\github\gtk-win32
    .\build.ps1

    To build the 64-bit bundle instead, run:

    cd C:\gtk-build\github\gtk-win32
    .\build.ps1 -Configuration x64

    The script has some parameters you can pass in. Run

    Get-Help -Full .\build.ps1

    to see the help for the parameters and examples.

  7. When the script is done, your GTK+ stack will be found under C:\gtk-build\gtk. Enjoy!

About

GTK+ 3 stack for Windows

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 35.9%
  • C 28.3%
  • C++ 14.9%
  • PowerShell 11.8%
  • Perl 4.5%
  • Makefile 4.2%
  • Other 0.4%