[cmake-commits] martink committed pair+int.int.c NONE 1.1 pair_int.int.c NONE 1.1 secondone.c NONE 1.1 testfromsubdir.c NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Feb 19 12:23:39 EST 2007


Update of /cvsroot/CMake/CMake/Tests/SubDirSpaces/Another Subdir
In directory public:/mounts/ram/cvs-serv14281/Another Subdir

Added Files:
	pair+int.int.c pair_int.int.c secondone.c testfromsubdir.c 
Log Message:
ENH: new test for spaces in the tree structure


--- NEW FILE: pair+int.int.c ---
#include <stdio.h>

void pair_stuff()
{
  printf("Placeholder for a strange file in subdirectory\n");
}

--- NEW FILE: testfromsubdir.c ---
#include <stdio.h>

void secondone();
void pair_stuff();
void vcl_stuff();

int main()
{
  printf("Hello from subdirectory\n");
  secondone();
  pair_stuff();
  vcl_stuff();
  return 0;
}

--- NEW FILE: pair_int.int.c ---
#include <stdio.h>

void pair_stuff()
{
  printf("Placeholder for a strange file in subdirectory\n");
}

--- NEW FILE: secondone.c ---
#include <stdio.h>

void secondone()
{
  printf("Hello again\n");
}



More information about the Cmake-commits mailing list