diff options
Diffstat (limited to 'src/util/xmlpool/SConscript')
-rw-r--r-- | src/util/xmlpool/SConscript | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/util/xmlpool/SConscript b/src/util/xmlpool/SConscript new file mode 100644 index 0000000000..fa42554d3a --- /dev/null +++ b/src/util/xmlpool/SConscript @@ -0,0 +1,14 @@ +Import('*') + +from sys import executable as python_cmd + +LOCALEDIR = env.Dir('.').srcnode().abspath + +xmlpool_options, = env.CodeGenerate( + target = 'options.h', + script = 'gen_xmlpool.py', + source = ['t_options.h'], + command = python_cmd + ' $SCRIPT $SOURCE ' + LOCALEDIR + ' > $TARGET' +) + +Export('xmlpool_options') |