I have an existing C library that's built with scons (the library has it's own
SConscript). This code now contains two variations controlled by #ifdefs. How
do I tell scons to build two variants of this library that can live side by
side (so applications can link against the appropriate variation)?
Conceptually, it's something like this:
driver_sources = [ ... ]
env.Library('drivers', driver_sources)
env.Library('drivers_withflag', driver_sources,
CPPDEFINES += ['FLAG'])
SCons (understandably) doesn't like using the same source list for different outputs with different environments because the intermediate object names conflict.
I'm not sure whether to approach this problem by somehow deriving a new
Builder for drivers_withflag objects, or whether I should include my library's
SConscript twice with some parameter to specify the #defines (and I could put
each variant in its own build directory). Any advice?