summaryrefslogtreecommitdiff
path: root/Tests/CTestConfig/CTestConfig.cxx
blob: 49c53241a5922688c91d1648b694e4158a5f169c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>

int main(int argc, const char* argv[])
{
  int i = 0;
  for (; i<argc; ++i)
  {
    fprintf(stdout, "%s\n", argv[i]);
  }

#ifdef CMAKE_BUILD_TYPE
  fprintf(stdout, "CMAKE_BUILD_TYPE is %s\n", CMAKE_BUILD_TYPE);
#endif

#ifdef CMAKE_INTDIR
  fprintf(stdout, "CMAKE_INTDIR is %s\n", CMAKE_INTDIR);
#endif

  return 0;
}