diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-11-01 21:57:05 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-11-01 21:57:05 (GMT) |
commit | 160c32e529aef4c685f61216b9d46889a8eae290 (patch) | |
tree | e66cfc165cd12e0a4659becd22f34310caeb335f /Tests/Dependency | |
parent | 8ef263ff51dc1db067f8a7cee8828ba56a2a13ae (diff) | |
download | CMake-160c32e529aef4c685f61216b9d46889a8eae290.zip CMake-160c32e529aef4c685f61216b9d46889a8eae290.tar.gz CMake-160c32e529aef4c685f61216b9d46889a8eae290.tar.bz2 |
BUG: add a test for a single char dir, and fix bug introduced in 1.53, but we still can not handle a space as the start of a directory name
Diffstat (limited to 'Tests/Dependency')
-rw-r--r-- | Tests/Dependency/1/CMakeLists.txt (renamed from Tests/Dependency/One/CMakeLists.txt) | 0 | ||||
-rw-r--r-- | Tests/Dependency/1/OneSrc.c (renamed from Tests/Dependency/One/OneSrc.c) | 0 | ||||
-rw-r--r-- | Tests/Dependency/CMakeLists.txt | 9 |
3 files changed, 5 insertions, 4 deletions
diff --git a/Tests/Dependency/One/CMakeLists.txt b/Tests/Dependency/1/CMakeLists.txt index b50b2e9..b50b2e9 100644 --- a/Tests/Dependency/One/CMakeLists.txt +++ b/Tests/Dependency/1/CMakeLists.txt diff --git a/Tests/Dependency/One/OneSrc.c b/Tests/Dependency/1/OneSrc.c index 9801c25..9801c25 100644 --- a/Tests/Dependency/One/OneSrc.c +++ b/Tests/Dependency/1/OneSrc.c diff --git a/Tests/Dependency/CMakeLists.txt b/Tests/Dependency/CMakeLists.txt index 724f109..97eab83 100644 --- a/Tests/Dependency/CMakeLists.txt +++ b/Tests/Dependency/CMakeLists.txt @@ -1,15 +1,16 @@ PROJECT( Dependency ) +# to test directories with only one character One was changed to 1 # There is one executable that depends on eight libraries. The # system has the following dependency graph: # # NoDepA: # NoDepB: NoDepA # NoDepC: NoDepA -# One: +# 1: # Two: Three -# Three: One Four -# Four: One Two NoDepA +# Three: 1 Four +# Four: 1 Two NoDepA # Five: Two # SixA: Two Five # SixB: Four Five @@ -28,5 +29,5 @@ PROJECT( Dependency ) # in the corresponding CMakeLists.txt just because of commands used. SUBDIRS( NoDepA NoDepB NoDepC ) -SUBDIRS( One Two Three Four Five Six Seven Eight ) +SUBDIRS( 1 Two Three Four Five Six Seven Eight ) SUBDIRS( Exec Exec2 Exec3 Exec4 ) |