1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-11-29 11:24:19 +01:00
HLMetaModOfficial/loader/AMBuilder

28 lines
911 B
Plaintext
Raw Normal View History

# vim: set ts=8 sts=2 sw=2 tw=99 et ft=python:
import os.path
def configure_library(name, linux_defines):
binary = MMS.Library(builder, name)
binary.compiler.cxxincludes += [os.path.join(builder.sourcePath, 'core', 'sourcehook')]
binary.sources += [
'loader.cpp',
'gamedll.cpp',
'serverplugin.cpp',
'utility.cpp',
]
if builder.target.platform == 'linux':
binary.compiler.defines += linux_defines
# Temporary Source2 hack. Always build linux with -m64
binary.compiler.cflags.remove('-m32')
binary.compiler.cflags += ['-m64', '-fPIC']
binary.compiler.linkflags.remove('-m32')
binary.compiler.linkflags += ['-m64']
nodes = builder.Add(binary)
MMS.binaries += [nodes]
configure_library('server', ['LIB_PREFIX="lib"', 'LIB_SUFFIX=".so"'])
if builder.target.platform == 'linux':
configure_library('server_i486', ['LIB_PREFIX=""', 'LIB_SUFFIX="_i486.so"'])