Scons ToDo:

* Made Frameserver building optional, added WITH_BF_FRAMESERVER.
* Enabled per default in btools.py
This commit is contained in:
2012-04-14 22:19:29 +00:00
parent 48ed63b1a5
commit f725a3d6c4
4 changed files with 10 additions and 2 deletions

View File

@@ -26,7 +26,8 @@ defs = [ 'GLEW_STATIC' ]
if env['WITH_BF_SMOKE']:
defs.append('WITH_SMOKE')
defs.append('WITH_FRAMESERVER') # TODO, make optional
if env['WITH_BF_FRAMESERVER']:
defs.append('WITH_FRAMESERVER')
if env['WITH_BF_PYTHON']:
incs += ' ../python'