ENH: added new test for out of dir source trees

This commit is contained in:
Ken Martin 2005-03-14 11:26:32 -05:00
parent 7a68698b6f
commit f7c024df2a
4 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# a simple test case
PROJECT (OutOfSource)
SUBDIRS(SubDir)

View File

@ -0,0 +1 @@
ADD_EXECUTABLE (simple simple.cxx)

View File

@ -0,0 +1,4 @@
int main ()
{
return 0;
}

View File

@ -0,0 +1,2 @@
# subdir to a sibling dir
SUBDIRS(${PROJECT_SOURCE_DIR}/OutOfSourceSubdir)