diff --git a/playground/pyqt5/wscript b/playground/pyqt5/wscript index 87e02694..58d7fea1 100644 --- a/playground/pyqt5/wscript +++ b/playground/pyqt5/wscript @@ -14,9 +14,11 @@ def options(opt): opt.load('python pyqt5') def configure(conf): - # Recent UIC/RCC versions require explicit python generator selection - conf.env.QT_PYUIC_FLAGS = ['-g', 'python'] - conf.env.QT_PYRCC_FLAGS = ['-g', 'python'] + # Recent UIC/RCC versions may require explicit python generator selection + #conf.env.QT_PYUIC_FLAGS = ['-g', 'python'] + #conf.env.QT_PYRCC_FLAGS = ['-g', 'python'] + # + # # Load also python to demonstrate mixed calls conf.load('python pyqt5') conf.check_python_version((2,7,4))