mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-10 14:15:37 +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
14 lines
367 B
Python
14 lines
367 B
Python
#!/usr/bin/python3
|
|
|
|
from pybuild.Helper import Helper
|
|
from pybuild.profiles.Glue_Win32 import Glue_Win32
|
|
|
|
|
|
class Glue_Win64(Glue_Win32):
|
|
def __init__(self):
|
|
"""Class Init"""
|
|
super().__init__()
|
|
self._NuGet_PackageName = 'GtkSharp.Win64.Glue'
|
|
self._Version = Helper.get_gtksharp_version(self.SrcDir)
|
|
self.MSYSTEM = 'MINGW64'
|