From cfef24ce8541ac3934ecfe7248a33d1099d94dfa Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sat, 6 Nov 2010 02:35:39 +0100 Subject: First take on abstract ConnectionBase, ASIO listening and connection handling. --- server/SConstruct | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'server/SConstruct') diff --git a/server/SConstruct b/server/SConstruct index d1def28..fe7244e 100644 --- a/server/SConstruct +++ b/server/SConstruct @@ -10,14 +10,14 @@ AddOption('--profiling', action = 'store_true') env.Append(LIBS = ['boost_system', 'pthread']) if not GetOption('release'): - env.Append(CPPFLAGS = ['-Wall', '-g']) + env.Append(CPPFLAGS = ['-Wall', '-g']) if GetOption('profiling'): - env.Append(CPPFLAGS = ['-pg']) - env.Append(LINKFLAGS = ['-pg']) + env.Append(CPPFLAGS = ['-pg']) + env.Append(LINKFLAGS = ['-pg']) Export('env') -env.Program('aotenjoud', Glob('*.cpp')) +env.Program('aotenjoud', Glob('*.cpp') + ['../common/connectionbase.cpp']) # vim: syn=python -- cgit v1.2.3