* Add Windows / msvc boost support on AMBuild * Disable RTTI and use config on b2's side * Update AMBuild to require boost's setup on Windows / Linux * Remove HL2SDK and MM:S settings in configure/buildscript * Indenting is hard
19 lines
755 B
Python
19 lines
755 B
Python
# vim: set sts=2 ts=8 sw=2 tw=99 et:
|
|
import sys
|
|
from ambuild2 import run
|
|
|
|
# Simple extensions do not need to modify this file.
|
|
|
|
builder = run.PrepareBuild(sourcePath = sys.path[0])
|
|
|
|
builder.options.add_option('--sm-path', type=str, dest='sm_path', default=None,
|
|
help='Path to SourceMod')
|
|
builder.options.add_option('--boost-path', type=str, dest='boost_path', default=None,
|
|
help='Path to Boost')
|
|
builder.options.add_option('--enable-debug', action='store_const', const='1', dest='debug',
|
|
help='Enable debugging symbols')
|
|
builder.options.add_option('--enable-optimize', action='store_const', const='1', dest='opt',
|
|
help='Enable optimization')
|
|
|
|
builder.Configure()
|