From 6fdbdea4e65b75ac9ebda91320deb656655d3af5 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Wed, 1 Jun 2011 19:31:19 +0200 Subject: A bunch of network-related changes. --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 487be82..d0b5851 100644 --- a/SConstruct +++ b/SConstruct @@ -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 -- cgit v1.2.3