summaryrefslogtreecommitdiff
path: root/server/SConstruct
blob: 8f20dcb4916e9075d0249bfad1c961b6860c7288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os

env = Environment(
        ENV = os.environ,
)

AddOption('--release', action = 'store_true')
AddOption('--profiling', action = 'store_true')

env.Append(LIBS = ['boost_system', 'pthread'])

if not GetOption('release'):
	env.Append(CPPFLAGS = ['-Wall', '-g'])

if GetOption('profiling'):
	env.Append(CPPFLAGS = ['-pg'])
	env.Append(LINKFLAGS = ['-pg'])

Export('env')

env.Program('aotenjoud', Glob('*.cpp') + Glob('../common/*.cpp'))

# vim: syn=python