diff options
-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() { + +} |