2014-02-08 09:14:15 +00:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
|
|
import os.path
|
|
|
|
|
|
|
|
binary = AMXX.Program(builder, 'amxxpc')
|
|
|
|
|
|
|
|
binary.compiler.defines += [
|
|
|
|
'AMX_ANSIONLY',
|
|
|
|
]
|
2014-02-09 00:09:29 +00:00
|
|
|
|
2014-08-02 19:29:53 +00:00
|
|
|
if builder.compiler.like('gcc'):
|
2014-02-09 00:09:29 +00:00
|
|
|
binary.compiler.cxxflags.remove('-fno-exceptions')
|
2014-02-08 09:14:15 +00:00
|
|
|
|
|
|
|
if builder.target_platform == 'linux':
|
|
|
|
binary.compiler.postlink += [
|
|
|
|
'-ldl',
|
2014-04-20 19:52:50 +00:00
|
|
|
binary.Dep(AMXX.stdcxx_path),
|
2014-02-08 09:14:15 +00:00
|
|
|
]
|
|
|
|
elif builder.target_platform == 'windows':
|
2014-02-09 00:09:29 +00:00
|
|
|
binary.compiler.defines += ['_MBCS']
|
|
|
|
binary.compiler.linkflags.remove('/SUBSYSTEM:WINDOWS')
|
|
|
|
binary.compiler.linkflags.append('/SUBSYSTEM:CONSOLE')
|
2014-02-08 09:14:15 +00:00
|
|
|
|
2015-02-02 20:42:01 +00:00
|
|
|
binary.compiler.linkflags += [AMXX.zlib.binary]
|
|
|
|
|
2014-02-08 09:14:15 +00:00
|
|
|
binary.sources = [
|
|
|
|
'amx.cpp',
|
|
|
|
'amxxpc.cpp',
|
|
|
|
'Binary.cpp',
|
|
|
|
]
|
|
|
|
|
2014-02-09 04:53:01 +00:00
|
|
|
if builder.target_platform == 'windows':
|
|
|
|
binary.sources += ['amxxpc1.rc']
|
|
|
|
|
2014-02-08 20:42:00 +00:00
|
|
|
AMXX.amxxpc = builder.Add(binary)
|