From 90df417a8ca07da66442aa6b4abd8486b332e8ca Mon Sep 17 00:00:00 2001 From: Tom Tanner Date: Fri, 20 Mar 2015 10:34:30 +0000 Subject: [PATCH] Fixed Scons build for existing bits. Changed pynedit.pro to fetch from 'standard' install location Changed saveas code to use organizer report rather than uibase - this way it's not dependant on the vagaries of the include path, and works the same as the rest of the organiser directory --- src/proxy/SConscript | 3 +++ src/runner/SConscript | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/proxy/SConscript b/src/proxy/SConscript index 19d79be..ec2e10a 100644 --- a/src/proxy/SConscript +++ b/src/proxy/SConscript @@ -32,3 +32,6 @@ lib = env.SharedLibrary('proxyPython', [ 'proxypython.cpp' ] + env.RES(env.Glob('*.rc'))) env.InstallModule(lib) + +res = env['QT_USED_MODULES'] +Return('res') diff --git a/src/runner/SConscript b/src/runner/SConscript index 5710e7a..5877a10 100644 --- a/src/runner/SConscript +++ b/src/runner/SConscript @@ -44,3 +44,6 @@ cpp_files = [ lib = env.SharedLibrary('pythonRunner', cpp_files + targets) env.InstallModule(lib) + +res = env['QT_USED_MODULES'] +Return('res')