summaryrefslogtreecommitdiff
path: root/Tests
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-06-21 17:52:22 -0400
committerKen Martin <ken.martin@kitware.com>2001-06-21 17:52:22 -0400
commit2b895779c2b8294b7c34272ed81674afa460808e (patch)
tree81af392d2ca5ecbb17ce3e6cf5b669a7b2a58766 /Tests
parent900f1be244f1d996ee2d6a1840978edf050cea26 (diff)
downloadcmake-2b895779c2b8294b7c34272ed81674afa460808e.tar.gz
new tests
Diffstat (limited to 'Tests')
-rw-r--r--Tests/Simple/CMakeLists.txt3
-rw-r--r--Tests/Simple/simple.cxx4
2 files changed, 7 insertions, 0 deletions
diff --git a/Tests/Simple/CMakeLists.txt b/Tests/Simple/CMakeLists.txt
new file mode 100644
index 0000000000..cb2452b9de
--- /dev/null
+++ b/Tests/Simple/CMakeLists.txt
@@ -0,0 +1,3 @@
+# a simple test case
+PROJECT (simple)
+ADD_EXECUTABLE (simple simple.cxx)
diff --git a/Tests/Simple/simple.cxx b/Tests/Simple/simple.cxx
new file mode 100644
index 0000000000..1482f27e53
--- /dev/null
+++ b/Tests/Simple/simple.cxx
@@ -0,0 +1,4 @@
+int main ()
+{
+ return 0;
+}