2013-11-18 18:46:46 +01:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
2010-05-14 07:34:36 +02:00
|
|
|
import os
|
|
|
|
|
2013-11-18 18:46:46 +01:00
|
|
|
for sdk_name in MMS.sdks:
|
2020-08-19 22:34:12 +02:00
|
|
|
for cxx in MMS.all_targets:
|
2017-12-20 08:11:57 +01:00
|
|
|
sdk = MMS.sdks[sdk_name]
|
2010-05-14 07:34:36 +02:00
|
|
|
|
2020-08-19 22:34:12 +02:00
|
|
|
if not cxx.target.arch in sdk.platformSpec[cxx.target.platform]:
|
2017-12-20 08:11:57 +01:00
|
|
|
continue
|
2010-05-14 07:34:36 +02:00
|
|
|
|
2017-12-20 08:11:57 +01:00
|
|
|
name = 'metamod.' + sdk.ext
|
2020-08-19 22:34:12 +02:00
|
|
|
binary = MMS.HL2Library(builder, cxx, name, sdk)
|
2016-07-22 19:59:58 +02:00
|
|
|
|
2017-12-20 08:11:57 +01:00
|
|
|
binary.sources += [
|
|
|
|
'metamod.cpp',
|
|
|
|
'metamod_console.cpp',
|
|
|
|
'metamod_oslink.cpp',
|
|
|
|
'metamod_plugins.cpp',
|
|
|
|
'metamod_util.cpp',
|
|
|
|
'provider/console.cpp',
|
2023-04-01 05:32:21 +02:00
|
|
|
'provider/provider_base.cpp',
|
2017-12-20 08:11:57 +01:00
|
|
|
'sourcehook/sourcehook.cpp',
|
|
|
|
'sourcehook/sourcehook_impl_chookidman.cpp',
|
|
|
|
'sourcehook/sourcehook_impl_chookmaninfo.cpp',
|
|
|
|
'sourcehook/sourcehook_impl_cproto.cpp',
|
|
|
|
'sourcehook/sourcehook_impl_cvfnptr.cpp',
|
|
|
|
'gamedll_bridge.cpp',
|
|
|
|
'vsp_bridge.cpp'
|
|
|
|
]
|
|
|
|
|
2023-04-01 06:19:34 +02:00
|
|
|
if sdk_name in ['dota', 'cs2']:
|
2023-04-01 06:02:45 +02:00
|
|
|
binary.sources += ['provider/source2/provider_source2.cpp']
|
|
|
|
else:
|
|
|
|
binary.sources += ['provider/source/provider_source.cpp']
|
|
|
|
|
2017-12-20 08:11:57 +01:00
|
|
|
# Source2 hack. TODO: check this more deterministically, "are we doing an x64 build?"
|
2020-08-19 22:34:12 +02:00
|
|
|
if binary.compiler.target.arch == 'x86':
|
2017-12-20 08:11:57 +01:00
|
|
|
binary.sources += ['sourcehook/sourcehook_hookmangen.cpp']
|
|
|
|
nodes = builder.Add(binary)
|
|
|
|
MMS.binaries += [nodes]
|