mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
ENH: add missing file
This commit is contained in:
20
Tests/TestDriver/testArgs.h
Normal file
20
Tests/TestDriver/testArgs.h
Normal file
@@ -0,0 +1,20 @@
|
||||
void testProccessArgs(int* ac, char***av)
|
||||
{
|
||||
if(*ac < 2)
|
||||
{
|
||||
return;
|
||||
}
|
||||
char** argv = *av;
|
||||
if(strcmp(argv[1], "--with-threads") == 0)
|
||||
{
|
||||
printf("number of threads is %s\n", argv[2]);
|
||||
*av +=2;
|
||||
*ac -=2;
|
||||
}
|
||||
else if (strcmp(argv[1], "--without-threads") == 0)
|
||||
{
|
||||
printf("no threads\n");
|
||||
*av += 1;
|
||||
*ac -= 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user