sourcemod/loader/AMBuilder

32 lines
911 B
Plaintext
Raw Normal View History

# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
2009-08-30 09:46:56 +02:00
import os.path
for cxx in builder.targets:
if cxx.target.platform in ['windows', 'mac']:
name = 'sourcemod_mm'
extra_ldflags = []
elif cxx.target.platform == 'linux':
name = 'sourcemod_mm_i486'
extra_ldflags = ['-ldl']
2009-08-30 09:46:56 +02:00
if cxx.target.arch == 'x86_64':
name = 'sourcemod_mm.x64'
binary = SM.Library(builder, cxx, name)
binary.compiler.cxxincludes += [
os.path.join(SM.mms_root, 'core'),
os.path.join(SM.mms_root, 'sourcehook')
]
binary.compiler.defines += ['META_NO_HL2SDK']
if binary.compiler.family == 'gcc' or binary.compiler.family == 'clang':
binary.compiler.cxxflags += ['-fno-rtti']
elif binary.compiler.family == 'msvc':
binary.compiler.cxxflags += ['/GR-']
binary.compiler.linkflags += extra_ldflags
binary.sources = [
'loader.cpp'
]
nodes = builder.Add(binary)
SM.binaries += [nodes]