I'm trying to create a build system for my project which will be based on scons.
The project consist of several directories, each holding part of the whole project.
Each directory hold the sources of either a shared library, a program or a process (daemon).
One directory (bin) holds all shared libraries and all executables.
Most of the directories already contain a sconscript file (named Sconstruct) which builds the directory's module (lib / executable) and put it in the bin directory.
Now I want to create one more sconscript - to rule them all..
In the parent directory I want a sconscript that builds all libraries and executables of the project, so that after I change a few sources here and there I can run scons from the parent directory and all affected modules will be re-built.
I tried a few ways, and they all failed.
I'm quite a noob in the scons business, and I susspect this is the root cause of my failures, but I'm sure this problem was solved many times by other, more experienced, developers - as the situation I described is quite common.
So, any suggestions are welcomed!
EDIT:
My current Sconstruct in the parent directory looks like this:
import os
env = os.environ
Export('env', 'os')
SConscript([
'Server1_Dir/Sconstruct',
'Server2_Dir/Sconstruct',
'Server3_Dir/Sconstruct'
])
The Sconstructs in the sub-directories (I know they should be called Sconscript) start with:
import os
Import('env')
home=env.get('HOME')
So it seems to me that I'm using the same environment for all scripts, though I'm getting a lot of:
scons: warning: Two different environments were specified for target....
warnings, which are unclear for me.
It's also worth noting that not all server-combinations in the main script yield these warnings - some may leave together peacefully, but not all.
It does seem to me that this is the right way to go, but I can't find a way to get rid of those warnings (and their root cause).
Thanks.