summaryrefslogtreecommitdiffstats
path: root/Tests/Dependency/1
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-11-01 21:57:05 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-11-01 21:57:05 (GMT)
commit160c32e529aef4c685f61216b9d46889a8eae290 (patch)
treee66cfc165cd12e0a4659becd22f34310caeb335f /Tests/Dependency/1
parent8ef263ff51dc1db067f8a7cee8828ba56a2a13ae (diff)
downloadCMake-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/1')
-rw-r--r--Tests/Dependency/1/CMakeLists.txt3
-rw-r--r--Tests/Dependency/1/OneSrc.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/Tests/Dependency/1/CMakeLists.txt b/Tests/Dependency/1/CMakeLists.txt
new file mode 100644
index 0000000..b50b2e9
--- /dev/null
+++ b/Tests/Dependency/1/CMakeLists.txt
@@ -0,0 +1,3 @@
+ADD_LIBRARY( One OneSrc.c )
+# This library has no dependencies
+TARGET_LINK_LIBRARIES( One "" )
diff --git a/Tests/Dependency/1/OneSrc.c b/Tests/Dependency/1/OneSrc.c
new file mode 100644
index 0000000..9801c25
--- /dev/null
+++ b/Tests/Dependency/1/OneSrc.c
@@ -0,0 +1,3 @@
+void OneFunction()
+{
+}