diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-06-01 19:31:19 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-06-01 19:31:19 +0200 |
commit | 6fdbdea4e65b75ac9ebda91320deb656655d3af5 (patch) | |
tree | 409c8a8da5ccdf8b527ffec9632ec3d6fbb9609e /SConstruct | |
parent | 8771dde21514e754a7eb774f7047d17c226d6212 (diff) |
A bunch of network-related changes.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ AddOption('--release', action = 'store_true') AddOption('--profiling', action = 'store_true') AddOption('--mingw32', action = 'store_true') -env.Append(CPPPATH = ['.']) +env.Append(CPPPATH = ['.', 'common']) # cross-compiling if GetOption('mingw32'): @@ -37,6 +37,6 @@ Export('env') env.SConscript('scripting/SConscript') -env.Program('foo.exe' if GetOption('mingw32') else 'foo', Glob('*.cpp') + ['noiseutils/noiseutils.cpp'] + Glob('widgets/*.cpp') + Glob('scripting/*.cpp')) +env.Program('gress.exe' if GetOption('mingw32') else 'gress', Glob('*.cpp') + Glob('widgets/*.cpp') + Glob('scripting/*.cpp') + Glob('common/*.cpp')) # vim: syn=python |