https://github.com/Kitware/CMake
Raw File
Tip revision: 63d21c1f8efeb2f2337221119c479d75bbb0b7c0 authored by David Cole on 03 November 2010, 17:38:38 UTC
CMake 2.8.3
Tip revision: 63d21c1
test2.cxx
#include <stdio.h>
int test2(int ac, char*av[])
{
  printf("test2\n");
  for(int i =0; i < ac; i++)
    printf("arg %d is %s\n", ac, av[i]);
  return 0;
}
back to top