I tried, but could not find an example of using SCons (or any other build system, for that matter) to build both gcc and mvC ++ with more powerful libraries.
Currently my SConstruct looks like
env = Environment()
env.Object(Glob('*.cpp'))
env.Program(target='test', source=Glob('*.o'), LIBS=['boost_filesystem-mt', 'boost_system-mt', 'boost_program_options-mt'])
Which works on Linux, but not with Visual C ++, which since 2010 does not allow you to specify global include directories.
source
share