ENH: create new test to test subdir exclude

This commit is contained in:
Bill Hoffman
2004-03-09 16:20:41 -05:00
parent c7067f426f
commit bf699505bc
8 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
PROJECT(example2)
ADD_EXECUTABLE(example2 example2.cxx)

View File

@@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("example2\n");
return 0;
}