projects
/
pykit.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
6144978
)
Move qt4 tool import into SConscript
Stefan Bund [Wed, 20 Oct 2010 11:18:50 +0000 (13:18 +0200)]
SConscript
patch
|
blob
|
history
SConstruct
patch
|
blob
|
history
diff --git
a/SConscript
b/SConscript
index
5503bac
..
56a2e28
100644
(file)
--- 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
(file)
--- 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',