From 8d2ad010f510222f09e0e3a2970d5d608a25dd5c Mon Sep 17 00:00:00 2001 From: Waf Project Date: Mon, 20 May 2024 23:37:27 +0200 Subject: [PATCH] Update the pyqt example --- playground/pyqt5/wscript | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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))