Started work on build system

This commit is contained in:
2025-05-31 00:42:41 +03:00
parent 953cca2aa4
commit ade32c24a6
33 changed files with 369 additions and 498 deletions

View File

@@ -11,7 +11,10 @@ void ICommandLine::CreateCommandLine( int argc, char **argv )
bool ICommandLine::CheckParam( char *psz )
{
for (auto szParam: cl_params) {
V_printf("%s\n",szParam);
if (!V_strcmp(szParam, psz))
{
return true;
}
}
return false;
}
@@ -58,4 +61,4 @@ const char *ICommandLine::GetParam(int nIndex)
return cl_params[nIndex];
}
static ICommandLine g_CommandLine;
static ICommandLine g_CommandLine;