mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-23 21:24:27 +00:00
wscript: add missing opfor files
This commit is contained in:
parent
bc88c81f7c
commit
805fce2350
@ -24,7 +24,8 @@ def build(bld):
|
|||||||
'pm_shared/*.c'
|
'pm_shared/*.c'
|
||||||
])
|
])
|
||||||
source += bld.path.ant_glob([
|
source += bld.path.ant_glob([
|
||||||
'hl/*.cpp'
|
'hl/*.cpp',
|
||||||
|
'gearbox/*.cpp'
|
||||||
])
|
])
|
||||||
source += bld.path.parent.ant_glob([
|
source += bld.path.parent.ant_glob([
|
||||||
'dlls/crossbow.cpp',
|
'dlls/crossbow.cpp',
|
||||||
@ -40,7 +41,17 @@ def build(bld):
|
|||||||
'dlls/satchel.cpp',
|
'dlls/satchel.cpp',
|
||||||
'dlls/shotgun.cpp',
|
'dlls/shotgun.cpp',
|
||||||
'dlls/squeakgrenade.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 += [
|
source += [
|
||||||
'GameStudioModelRenderer.cpp',
|
'GameStudioModelRenderer.cpp',
|
||||||
@ -91,6 +102,7 @@ def build(bld):
|
|||||||
'.',
|
'.',
|
||||||
'hl/',
|
'hl/',
|
||||||
'../dlls',
|
'../dlls',
|
||||||
|
'../dlls/gearbox',
|
||||||
'../common',
|
'../common',
|
||||||
'../engine',
|
'../engine',
|
||||||
'../pm_shared',
|
'../pm_shared',
|
||||||
|
48
dlls/wscript
48
dlls/wscript
@ -26,6 +26,53 @@ def build(bld):
|
|||||||
])
|
])
|
||||||
|
|
||||||
source += [
|
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',
|
'agrunt.cpp',
|
||||||
'airtank.cpp',
|
'airtank.cpp',
|
||||||
'aflock.cpp',
|
'aflock.cpp',
|
||||||
@ -129,6 +176,7 @@ def build(bld):
|
|||||||
|
|
||||||
includes = [
|
includes = [
|
||||||
'.',
|
'.',
|
||||||
|
'gearbox',
|
||||||
'../common',
|
'../common',
|
||||||
'../engine',
|
'../engine',
|
||||||
'../pm_shared',
|
'../pm_shared',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user