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

@ -23,6 +23,13 @@ elif builder.target_platform == 'linux':
binary.Dep('JIT/natives-x86.o'),
binary.Dep('JIT/helpers-x86.o'),
]
elif builder.target_platform == 'windows':
jit_objects = [
binary.Dep('JIT/amxexecn.obj'),
binary.Dep('JIT/amxjitsn.obj'),
binary.Dep('JIT/helpers-x86.obj'),
binary.Dep('JIT/natives-x86.obj'),
]
binary.compiler.linkflags += jit_objects