diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-11-01 13:22:30 +0100 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-11-01 13:22:30 +0100 |
commit | 8838165554a818882d0412a2b0ae8611e0b34b0f (patch) | |
tree | ca129863f0ae5acc69a273b4a6897a35bc2853ed | |
parent | b38662cd0510aaf3fba0fccafe660ffc46578ac7 (diff) |
Added SConstruct files.
-rw-r--r-- | server/SConstruct | 21 | ||||
-rw-r--r-- | server/main.cpp | 5 |
2 files changed, 26 insertions, 0 deletions
diff --git a/server/SConstruct b/server/SConstruct new file mode 100644 index 0000000..b8329cd --- /dev/null +++ b/server/SConstruct @@ -0,0 +1,21 @@ +import os + +env = Environment( + ENV = os.environ, +) + +AddOption('--release', action = 'store_true') +AddOption('--profiling', action = 'store_true') + +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')) + +# vim: syn=python diff --git a/server/main.cpp b/server/main.cpp index e69de29..443bd82 100644 --- a/server/main.cpp +++ b/server/main.cpp @@ -0,0 +1,5 @@ + + +int main() { + +} |