amxmodx/dlls/cstrike/csx/WinCSX/AMBuilder
David Anderson f0f319a418 Add WinCSX to AMBuild scripts.
Former-commit-id: eca50829ae
2014-02-08 21:16:41 -08:00

23 lines
412 B
Python

# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
import os.path
binary = AMXX.Program(builder, 'WinCSX')
binary.compiler.includes += [
os.path.join(builder.currentSourcePath, 'resources'),
]
binary.compiler.defines += ['_MBCS']
binary.compiler.linkflags += [
'comctl32.lib',
]
binary.sources = [
'CRank.cpp',
'WinCSX.cpp',
'stdafx.cpp',
'resources/WinCSX.rc',
]
AMXX.csx_app = builder.Add(binary)