From a1fdb5447191e6f90df09380a86feffe02936cb7 Mon Sep 17 00:00:00 2001 From: Tom Tanner Date: Wed, 25 Mar 2015 22:35:53 +0000 Subject: [PATCH] Add in all the necessary stuff for scons --- src/runner/SConscript | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/runner/SConscript b/src/runner/SConscript index 7a57e2a..efb78bd 100644 --- a/src/runner/SConscript +++ b/src/runner/SConscript @@ -46,5 +46,15 @@ lib = env.SharedLibrary('pythonRunner', cpp_files + targets) #This is referred to from inside a resource file. We don't install it. #env.InstallModule(lib) +# However... +# we do need boost-python and pythonvv.dll and pythonvv.zip (though the last +# isn't needed to just bring up the module) +#env.Pseudo('install') +#env.Depends('install', +# (env.Install('${INSTALL_PATH}', 'pyCfg.py'), +# env.Install(os.path.join('${INSTALL_PATH}', 'data'), +# ( ui, rc, 'settings.json' )), +# )) + res = env['QT_USED_MODULES'] Return('res')