From 657b67a9a980e56bf59f54e98bf462729d724920 Mon Sep 17 00:00:00 2001 From: Joseph Coffland Date: Fri, 4 Mar 2016 14:19:25 -0800 Subject: [PATCH] mingw support --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c2928e6..578d3d0 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,12 @@ elif sys.platform == 'win32': from cx_Freeze import setup, Executable e = Executable(app, base = 'Win32GUI', icon = 'images/FAHControl.ico') - options = {'build_exe': {'build_exe': 'gui'}} + options = { + 'build_exe': { + 'build_exe': 'gui', + 'includes': 'gtk' + } + } extra_opts = dict(executables = [e], options = options) else: