Port AMBuild scripts to Windows.

Former-commit-id: 9af9b5f205cfd588a16e1164bd033c22ce2107fc
This commit is contained in:
David Anderson
2014-02-08 16:09:29 -08:00
parent bd586d37e6
commit 922b4802f1
7 changed files with 72 additions and 5 deletions

View File

@ -6,7 +6,9 @@ binary = AMXX.Program(builder, 'amxxpc')
binary.compiler.defines += [
'AMX_ANSIONLY',
]
binary.compiler.cxxflags.remove('-fno-exceptions')
if builder.target_platform != 'windows':
binary.compiler.cxxflags.remove('-fno-exceptions')
if builder.target_platform == 'linux':
binary.compiler.postlink += [
@ -16,7 +18,10 @@ if builder.target_platform == 'linux':
elif builder.target_platform == 'mac':
binary.compiler.postlink += [binary.Dep('libz-darwin.a')]
elif builder.target_platform == 'windows':
binary.compiler.postlink += [binary.Dep('zlib.lib')]
binary.compiler.defines += ['_MBCS']
binary.compiler.linkflags += [binary.Dep('zlib.lib')]
binary.compiler.linkflags.remove('/SUBSYSTEM:WINDOWS')
binary.compiler.linkflags.append('/SUBSYSTEM:CONSOLE')
binary.sources = [
'amx.cpp',