61 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-05-03 19:19:39 +03:00
#! /usr/bin/env python
# encoding: utf-8
# a1batross, mittorn, 2018
from waflib import Utils
import os
2019-05-03 19:19:39 +03:00
def options(opt):
return
def configure(conf):
2021-06-17 22:31:25 +05: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:
conf.env.append_value('LINKFLAGS', '/def:%s' % hlDefNode.abspath())
2021-06-17 22:31:25 +05:00
else:
conf.fatal("Could not find hl.def")
2019-05-03 19:19:39 +03:00
def build(bld):
2023-04-29 19:20:39 +05:00
excluded_files = ['mpstubb.cpp', 'stats.cpp', 'Wxdebug.cpp', 'gearbox/gearbox_client.cpp']
source = bld.path.ant_glob('**/*.cpp', excl=excluded_files)
source += bld.path.parent.ant_glob('pm_shared/*.c')
defines = []
if bld.env.USE_VOICEMGR:
source += bld.path.parent.ant_glob('game_shared/voice_gamemgr.cpp')
else:
defines += ['NO_VOICEGAMEMGR']
2020-08-01 20:26:28 +05:00
includes = [
'.',
2021-02-26 17:57:44 +03:00
'gearbox',
2020-08-01 20:26:28 +05:00
'../common',
'../engine',
'../pm_shared',
'../game_shared',
'../public'
]
2019-05-06 04:13:09 +03:00
if bld.env.DEST_OS not in ['android', 'dos']:
install_path = os.path.join(bld.env.GAMEDIR, bld.env.SERVER_INSTALL_DIR)
2019-05-06 04:13:09 +03:00
else:
install_path = bld.env.PREFIX
2019-05-03 19:19:39 +03:00
bld.shlib(
source = source,
target = bld.env.SERVER_LIBRARY_NAME + bld.env.POSTFIX,
name = 'server',
2019-05-03 19:19:39 +03:00
features = 'c cxx',
includes = includes,
defines = defines,
2019-05-06 04:13:09 +03:00
install_path = install_path,
2019-05-03 19:19:39 +03:00
subsystem = bld.env.MSVC_SUBSYSTEM,
idx = bld.get_taskgen_count()
2019-05-03 19:19:39 +03:00
)
2020-08-09 03:29:46 +05:00