23 lines
536 B
Python
23 lines
536 B
Python
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
|
import os.path
|
|
|
|
if builder.target_platform in ['windows', 'mac']:
|
|
name = 'sourcemod_mm'
|
|
extra_ldflags = []
|
|
elif builder.target_platform is 'linux':
|
|
name = 'sourcemod_mm_i486'
|
|
extra_ldflags = ['-ldl']
|
|
|
|
binary = SM.Library(builder, name)
|
|
binary.compiler.cxxincludes += [
|
|
os.path.join(SM.mms_root, 'core'),
|
|
os.path.join(SM.mms_root, 'sourcehook')
|
|
]
|
|
binary.compiler.linkflags += extra_ldflags
|
|
binary.sources = [
|
|
'loader.cpp'
|
|
]
|
|
|
|
nodes = builder.Add(binary)
|
|
SM.binaries += [nodes]
|