mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
17 lines
344 B
C
17 lines
344 B
C
void testProcessArgs(int* ac, char*** av)
|
|
{
|
|
char** argv = *av;
|
|
if (*ac < 2) {
|
|
return;
|
|
}
|
|
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;
|
|
}
|
|
}
|