Skip to content

hexchat/gvsbuild

 
 

Repository files navigation

Build status

Goals

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

The powershell script was originally 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 2017, 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
  6. We check sha256 hashes of the downloaded files: if error arise check that the download is not been interrupted: a partial file is likely to miss the hash check. Delete the file and try again.
  7. The download is done using the ssl certificate (handled by the system), in case of error the download is tried again without the certificate.
  8. We try to download also the tools needed and using them from a local directory, without any installation. Actually we use directly, among others, cmake, meson, ninja, nuget and perl.

Building

  1. Install the following build tools and dependencies:

  2. Follow the instructions on the msys2 page to update the core packages. The needed packages for the script (make, diffutils, ...) are download and installed automatically if not presents in the msys2 installation.

  3. Clone this repository to C:\gtk-build\github\gvsbuild It contains the build script, project files and patches.

  4. Now start a command-line window as a regular user. Go to the gvsbuild directory and start building with the script. For example, to build 32-bit GTK+ 3 and its dependencies, run:

    cd C:\gtk-build\github\gvsbuild
    python .\build.py build gtk3
    

    To build the 64-bit version, run:

    cd C:\gtk-build\github\gvsbuild
    python .\build.py build -p x64 gtk3
    

    For more information about the possible commands. Run

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

License

This build script is licensed under the GPL2.0 license, see the COPYING file for the full text.

The binaries produced by the build script are licensed under the license terms of the project that gets built (ie glib is LGPL so you can use glib.dll built with this script under the terms of LGPL).

Patches included in the repository are licensed under the license terms of the project they apply to.

Packages

No packages published

Languages

  • C 74.4%
  • Python 8.8%
  • Makefile 8.4%
  • CMake 3.5%
  • C++ 2.5%
  • Perl 1.2%
  • Other 1.2%