mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-10 21:15:28 +00:00
5063385d16
* Fix minor bugs and improve code formatting of Python build tool * Prepend $PATH to give it higher priority * Invoke WiX tools through variable to ensure correct path * Make build script ensure pacman dependencies are installed * pacman -Sy causes dependency break on AppVeyor * Skip deps version check and don't show progress bar
18 lines
506 B
Python
18 lines
506 B
Python
#!/usr/bin/python3
|
|
"""Build of GTK3 into a NuGet package - Windows 64bit"""
|
|
|
|
from os.path import join
|
|
|
|
from pybuild.Helper import Helper
|
|
from pybuild.profiles.Gtk_Win32 import Gtk_Win32
|
|
|
|
|
|
class Gtk_Win64(Gtk_Win32):
|
|
def __init__(self):
|
|
"""Class Init"""
|
|
super().__init__()
|
|
self._NuGet_PackageName = 'GtkSharp.Win64'
|
|
self._MingwBinPath = join(self.MsysPath + '\\mingw64\\bin')
|
|
self.arch = 'Win64'
|
|
self._Version = Helper.get_gtk_version_msys(self.MsysPath)
|