Move qt4 tool import into SConscript
Stefan Bund [Wed, 20 Oct 2010 11:18:50 +0000 (13:18 +0200)]
SConscript
SConstruct

index 5503bac..56a2e28 100644 (file)
@@ -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' ])
 
index 5543428..beeaf1b 100644 (file)
@@ -3,7 +3,6 @@
 import os
 
 env = Environment(ENV = os.environ)
-env.Tool('qt4',['site_scons/qtscons'])
 
 env.SetDefault(
     PYTHON            = 'python',