From 805fce2350179d1f11c8ff65232571d866fb3072 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 26 Feb 2021 17:57:44 +0300 Subject: [PATCH] wscript: add missing opfor files --- cl_dll/wscript | 16 ++++++++++++++-- dlls/wscript | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 2 deletions(-) diff --git a/cl_dll/wscript b/cl_dll/wscript index 07dabf08..240b757a 100644 --- a/cl_dll/wscript +++ b/cl_dll/wscript @@ -24,7 +24,8 @@ def build(bld): 'pm_shared/*.c' ]) source += bld.path.ant_glob([ - 'hl/*.cpp' + 'hl/*.cpp', + 'gearbox/*.cpp' ]) source += bld.path.parent.ant_glob([ 'dlls/crossbow.cpp', @@ -40,7 +41,17 @@ def build(bld): 'dlls/satchel.cpp', 'dlls/shotgun.cpp', 'dlls/squeakgrenade.cpp', - 'dlls/tripmine.cpp' + 'dlls/tripmine.cpp', + 'dlls/gearbox/displacer.cpp', + 'dlls/gearbox/knife.cpp', + 'dlls/gearbox/eagle.cpp', + 'dlls/gearbox/grapple.cpp', + 'dlls/gearbox/m249.cpp', + 'dlls/gearbox/penguin.cpp', + 'dlls/gearbox/pipewrench.cpp', + 'dlls/gearbox/shockrifle.cpp', + 'dlls/gearbox/sniperrifle.cpp', + 'dlls/gearbox/sporelauncher.cpp' ]) source += [ 'GameStudioModelRenderer.cpp', @@ -91,6 +102,7 @@ def build(bld): '.', 'hl/', '../dlls', + '../dlls/gearbox', '../common', '../engine', '../pm_shared', diff --git a/dlls/wscript b/dlls/wscript index 33d37185..3859e793 100644 --- a/dlls/wscript +++ b/dlls/wscript @@ -26,6 +26,53 @@ def build(bld): ]) source += [ + 'gearbox/blkop_apache.cpp', + 'gearbox/blkop_osprey.cpp', + 'gearbox/cleansuit_scientist.cpp', + 'gearbox/ctf_gamerules.cpp', + 'gearbox/ctf_items.cpp', + 'gearbox/ctf_powerups.cpp', + 'gearbox/displacer.cpp', + 'gearbox/drillsergeant.cpp', + 'gearbox/eagle.cpp', + 'gearbox/fgrunt.cpp', + 'gearbox/func_tank_of.cpp', + # 'gearbox/gearbox_client.cpp', + 'gearbox/gearbox_effects.cpp', + 'gearbox/gearbox_triggers.cpp', + 'gearbox/gearbox_utils.cpp', + 'gearbox/generic_items.cpp', + 'gearbox/geneworm.cpp', + 'gearbox/gonome.cpp', + 'gearbox/grapple_tonguetip.cpp', + 'gearbox/grapple.cpp', + 'gearbox/houndeye_dead.cpp', + 'gearbox/islave_dead.cpp', + 'gearbox/knife.cpp', + 'gearbox/loader.cpp', + 'gearbox/m249.cpp', + 'gearbox/massn.cpp', + 'gearbox/nuclearbomb.cpp', + 'gearbox/op4mortar.cpp', + 'gearbox/otis.cpp', + 'gearbox/penguin.cpp', + 'gearbox/pipewrench.cpp', + 'gearbox/pitdrone.cpp', + 'gearbox/pitworm.cpp', + 'gearbox/recruit.cpp', + 'gearbox/ropes.cpp', + 'gearbox/shock.cpp', + 'gearbox/shockrifle.cpp', + 'gearbox/shockroach.cpp', + 'gearbox/skeleton.cpp', + 'gearbox/sniperrifle.cpp', + 'gearbox/spore_ammo.cpp', + 'gearbox/sporegrenade.cpp', + 'gearbox/sporelauncher.cpp', + 'gearbox/strooper.cpp', + 'gearbox/voltigore.cpp', + 'gearbox/zombie_barney.cpp', + 'gearbox/zombie_soldier.cpp', 'agrunt.cpp', 'airtank.cpp', 'aflock.cpp', @@ -129,6 +176,7 @@ def build(bld): includes = [ '.', + 'gearbox', '../common', '../engine', '../pm_shared',