Ryujinx-GtkSharp/NuGet/pybuild/profiles/Gtk_Win64.py
stil 5063385d16 AppVeyor integration (#25)
* 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
2017-02-05 07:07:05 +01:00

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)