From: Stefan Bund Date: Wed, 20 Oct 2010 11:18:50 +0000 (+0200) Subject: Move qt4 tool import into SConscript X-Git-Url: http://g0dil.de/git?p=pykit.git;a=commitdiff_plain;h=24533960cdd5783a6b071da50e45cf45033afe66 Move qt4 tool import into SConscript --- diff --git a/SConscript b/SConscript index 5503bac..56a2e28 100644 --- a/SConscript +++ b/SConscript @@ -1,7 +1,10 @@ # -*- python -*- +import os.path Import('env') +env.Tool('qt4', [ os.path.join('site_scons','qtscons') ]) + # QtSvg and QtXml are needed by some plugins ... env.EnableQt4Modules([ 'QtWebKit', 'QtNetwork', 'QtSvg', 'QtXml', 'QtGui', 'QtCore' ]) diff --git a/SConstruct b/SConstruct index 5543428..beeaf1b 100644 --- a/SConstruct +++ b/SConstruct @@ -3,7 +3,6 @@ import os env = Environment(ENV = os.environ) -env.Tool('qt4',['site_scons/qtscons']) env.SetDefault( PYTHON = 'python',