mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
added strlcat.c and strlcpy.c to build.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@559 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
5e6212ad02
commit
1ff7413631
7 changed files with 34 additions and 4 deletions
|
@ -275,6 +275,13 @@
|
|||
</Unit>
|
||||
<Unit filename="../../Quake/snd_wave.h" />
|
||||
<Unit filename="../../Quake/spritegn.h" />
|
||||
<Unit filename="../../Quake/strl_fn.h" />
|
||||
<Unit filename="../../Quake/strlcat.c">
|
||||
<Option compilerVar="CC" />
|
||||
</Unit>
|
||||
<Unit filename="../../Quake/strlcpy.c">
|
||||
<Option compilerVar="CC" />
|
||||
</Unit>
|
||||
<Unit filename="../../Quake/sv_main.c">
|
||||
<Option compilerVar="CC" />
|
||||
</Unit>
|
||||
|
|
|
@ -224,7 +224,8 @@ GLOBJS = \
|
|||
r_brush.o \
|
||||
gl_model.o
|
||||
|
||||
OBJS := \
|
||||
OBJS := strlcat.o \
|
||||
strlcpy.o \
|
||||
$(GLOBJS) \
|
||||
$(SYSOBJ_INPUT) \
|
||||
$(COMOBJ_SND) \
|
||||
|
|
|
@ -250,7 +250,8 @@ GLOBJS = \
|
|||
r_brush.o \
|
||||
gl_model.o
|
||||
|
||||
OBJS := \
|
||||
OBJS := strlcat.o \
|
||||
strlcpy.o \
|
||||
$(GLOBJS) \
|
||||
$(SYSOBJ_INPUT) \
|
||||
$(COMOBJ_SND) \
|
||||
|
|
|
@ -210,7 +210,8 @@ GLOBJS = \
|
|||
r_brush.o \
|
||||
gl_model.o
|
||||
|
||||
OBJS := \
|
||||
OBJS := strlcat.o \
|
||||
strlcpy.o \
|
||||
$(GLOBJS) \
|
||||
$(SYSOBJ_INPUT) \
|
||||
$(COMOBJ_SND) \
|
||||
|
|
|
@ -210,7 +210,8 @@ GLOBJS = \
|
|||
r_brush.o \
|
||||
gl_model.o
|
||||
|
||||
OBJS := \
|
||||
OBJS := strlcat.o \
|
||||
strlcpy.o \
|
||||
$(GLOBJS) \
|
||||
$(SYSOBJ_INPUT) \
|
||||
$(COMOBJ_SND) \
|
||||
|
|
|
@ -284,6 +284,13 @@
|
|||
</Unit>
|
||||
<Unit filename="..\..\Quake\snd_wave.h" />
|
||||
<Unit filename="..\..\Quake\spritegn.h" />
|
||||
<Unit filename="..\..\Quake\strl_fn.h" />
|
||||
<Unit filename="..\..\Quake\strlcat.c">
|
||||
<Option compilerVar="CC" />
|
||||
</Unit>
|
||||
<Unit filename="..\..\Quake\strlcpy.c">
|
||||
<Option compilerVar="CC" />
|
||||
</Unit>
|
||||
<Unit filename="..\..\Quake\sv_main.c">
|
||||
<Option compilerVar="CC" />
|
||||
</Unit>
|
||||
|
|
|
@ -569,6 +569,14 @@
|
|||
RelativePath="..\..\Quake\snd_wave.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Quake\strlcat.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Quake\strlcpy.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Quake\sv_main.c"
|
||||
>
|
||||
|
@ -823,6 +831,10 @@
|
|||
RelativePath="..\..\Quake\spritegn.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Quake\strl_fn.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Quake\sys.h"
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue