2019-05-03 18:19:39 +02:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
# a1batross, mittorn, 2018
|
|
|
|
|
|
|
|
from waflib import Utils
|
|
|
|
import os
|
2019-10-31 09:14:36 +01:00
|
|
|
|
2019-05-03 18:19:39 +02:00
|
|
|
def options(opt):
|
|
|
|
return
|
|
|
|
|
|
|
|
def configure(conf):
|
2021-06-17 19:31:25 +02:00
|
|
|
if conf.env.COMPILER_CC == 'msvc':
|
|
|
|
# hl.def removes MSVC function name decoration from GiveFnptrsToDll on Windows.
|
|
|
|
# Without this, the lookup for this function fails.
|
|
|
|
hlDefNode = conf.path.find_resource("./hl.def")
|
|
|
|
|
|
|
|
if hlDefNode is not None:
|
2023-04-17 04:24:42 +02:00
|
|
|
conf.env.append_value('LINKFLAGS', '/def:%s' % hlDefNode.abspath())
|
2021-06-17 19:31:25 +02:00
|
|
|
else:
|
|
|
|
conf.fatal("Could not find hl.def")
|
2019-05-03 18:19:39 +02:00
|
|
|
|
|
|
|
def build(bld):
|
2023-04-25 02:06:25 +02:00
|
|
|
excluded_files = ['mpstubb.cpp', 'stats.cpp', 'Wxdebug.cpp']
|
2019-10-31 09:14:36 +01:00
|
|
|
|
2023-04-17 04:24:42 +02:00
|
|
|
source = bld.path.ant_glob('**/*.cpp', excl=excluded_files)
|
|
|
|
source += bld.path.parent.ant_glob('pm_shared/*.c')
|
2024-04-05 18:47:53 +02:00
|
|
|
source += ['../game_shared/vcs_info.cpp']
|
2023-04-17 04:24:42 +02:00
|
|
|
|
|
|
|
defines = []
|
|
|
|
if bld.env.USE_VOICEMGR:
|
2024-04-05 18:47:53 +02:00
|
|
|
source += ['../game_shared/voice_gamemgr.cpp']
|
2023-04-17 04:24:42 +02:00
|
|
|
else:
|
|
|
|
defines += ['NO_VOICEGAMEMGR']
|
2019-10-31 09:14:36 +01:00
|
|
|
|
2020-08-01 17:26:28 +02:00
|
|
|
includes = [
|
|
|
|
'.',
|
|
|
|
'../common',
|
|
|
|
'../engine',
|
|
|
|
'../pm_shared',
|
|
|
|
'../game_shared',
|
|
|
|
'../public'
|
|
|
|
]
|
2019-05-06 03:13:09 +02:00
|
|
|
|
2020-02-12 09:40:06 +01:00
|
|
|
if bld.env.DEST_OS not in ['android', 'dos']:
|
2023-04-17 04:24:42 +02:00
|
|
|
install_path = os.path.join(bld.env.GAMEDIR, bld.env.SERVER_INSTALL_DIR)
|
2019-05-06 03:13:09 +02:00
|
|
|
else:
|
|
|
|
install_path = bld.env.PREFIX
|
|
|
|
|
2019-05-03 18:19:39 +02:00
|
|
|
bld.shlib(
|
|
|
|
source = source,
|
2023-04-17 04:24:42 +02:00
|
|
|
target = bld.env.SERVER_LIBRARY_NAME + bld.env.POSTFIX,
|
2020-02-12 09:40:06 +01:00
|
|
|
name = 'server',
|
2019-05-03 18:19:39 +02:00
|
|
|
features = 'c cxx',
|
|
|
|
includes = includes,
|
|
|
|
defines = defines,
|
2019-05-06 03:13:09 +02:00
|
|
|
install_path = install_path,
|
2019-05-03 18:19:39 +02:00
|
|
|
subsystem = bld.env.MSVC_SUBSYSTEM,
|
2023-04-17 04:24:42 +02:00
|
|
|
idx = bld.get_taskgen_count()
|
2019-05-03 18:19:39 +02:00
|
|
|
)
|
2020-08-09 00:29:46 +02:00
|
|
|
|