Fix sources list

This commit is contained in:
a1batross 2016-07-08 19:11:56 +06:00
parent 8537c4508c
commit f7444b5402
2 changed files with 36 additions and 9 deletions

View File

@ -23,7 +23,6 @@ SRCS := \
./entity.cpp \
./in_camera.cpp \
./input.cpp \
./parsemsg.cpp \
./rain.cpp \
./tri.cpp \
./util.cpp \
@ -69,7 +68,6 @@ SRCS := \
./hud/spectator_gui.cpp \
./com_weapons.cpp \
./cs_wpn/cs_baseentity.cpp \
./cs_wpn/cs_objects.cpp \
./cs_wpn/cs_weapons.cpp \
../dlls/wpn_shared/wpn_ak47.cpp \
../dlls/wpn_shared/wpn_aug.cpp \
@ -132,8 +130,7 @@ SRCS := \
./events/event_vehicle.cpp \
./events/event_xm1014.cpp \
./events/hl_events.cpp \
./ev_common.cpp \
./events.cpp
./ev_common.cpp
DEFINES = -Wno-write-strings -DLINUX -D_LINUX -Dstricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp -DCLIENT_WEAPONS -DCLIENT_DLL -Wl,--no-undefined

View File

@ -82,14 +82,11 @@ set (WEAPONEVENT_SRCS
./events/event_xm1014.cpp
./events/hl_events.cpp
./ev_common.cpp
./events.cpp
)
set (CLWEAPON_SRCS
./com_weapons.cpp
./cs_wpn/cs_baseentity.cpp
./cs_wpn/cs_objects.cpp
./cs_wpn/cs_weapons.cpp
../dlls/wpn_shared/wpn_ak47.cpp
../dlls/wpn_shared/wpn_aug.cpp
@ -152,12 +149,25 @@ set (HUD_SRCS
./hud/death.cpp
./hud/saytext.cpp
./hud/spectator_gui.cpp
./include/hud/ammo.h
./include/hud/ammohistory.h
./include/hud/health.h
./include/hud/hud.h
./include/hud/hud_iface.h
./include/hud/hud_spectator.h
./include/hud/radar.h
)
set (STUDIORENDER_SRCS
./studio/GameStudioModelRenderer.cpp
./studio/StudioModelRenderer.cpp
./studio/studio_util.cpp
./include/studio/GameStudioModelRenderer.h
./include/studio/StudioModelRenderer.h
./include/studio/studio_util.h
)
set (PLAYERMOVE_SRCS
@ -172,8 +182,7 @@ set (CLDLL_SOURCES
./entity.cpp
./in_camera.cpp
./input.cpp
./parsemsg.cpp
./rain.cpp
./rain.cpp
./tri.cpp
./util.cpp
./view.cpp
@ -182,6 +191,27 @@ set (CLDLL_SOURCES
./vgui_parser.cpp
./unicode_strtools.cpp
./draw_util.cpp
./include/camera.h
./include/cl_dll.h
./include/cl_util.h
./include/com_weapons.h
./include/csprite.h
./include/demo.h
./include/draw_util.h
./include/eventscripts.h
./include/events.h
./include/ev_hldm.h
./include/overview.h
./include/parsemsg.h
./include/rain.h
./include/tf_defs.h
./include/unicode_strtools.h
./include/util_vector.h
./include/vgui_parser.h
./include/view.h
./include/wrect.h
./include/math/neon_mathfun.h
./include/math/sse_mathfun.h
${PLAYERMOVE_SRCS}
${HUD_SRCS}