File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ if(BUILD_TESTING)
176
176
../amx/amxaux.h
177
177
../amx/amxcons.c
178
178
../amx/amxcore.c
179
+ ../amx/amxstring.c
179
180
)
180
181
if (UNIX )
181
182
set (PAWNRUNS_SRCS
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ static void PrintUsage(char *program)
27
27
int main (int argc ,char * argv [])
28
28
{
29
29
extern AMX_NATIVE_INFO console_Natives [];
30
+ extern AMX_NATIVE_INFO string_Natives [];
30
31
extern AMX_NATIVE_INFO core_Natives [];
31
32
32
33
AMX amx ;
@@ -41,6 +42,7 @@ int main(int argc,char *argv[])
41
42
ErrorExit (& amx , err );
42
43
43
44
amx_Register (& amx , console_Natives , -1 );
45
+ amx_Register (& amx , string_Natives , -1 );
44
46
err = amx_Register (& amx , core_Natives , -1 );
45
47
if (err != AMX_ERR_NONE )
46
48
ErrorExit (& amx , err );
You can’t perform that action at this time.
0 commit comments