diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-06-21 21:52:22 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-06-21 21:52:22 (GMT) |
commit | 2b895779c2b8294b7c34272ed81674afa460808e (patch) | |
tree | 81af392d2ca5ecbb17ce3e6cf5b669a7b2a58766 /Tests/Simple | |
parent | 900f1be244f1d996ee2d6a1840978edf050cea26 (diff) | |
download | CMake-2b895779c2b8294b7c34272ed81674afa460808e.zip CMake-2b895779c2b8294b7c34272ed81674afa460808e.tar.gz CMake-2b895779c2b8294b7c34272ed81674afa460808e.tar.bz2 |
new tests
Diffstat (limited to 'Tests/Simple')
-rw-r--r-- | Tests/Simple/CMakeLists.txt | 3 | ||||
-rw-r--r-- | Tests/Simple/simple.cxx | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Tests/Simple/CMakeLists.txt b/Tests/Simple/CMakeLists.txt new file mode 100644 index 0000000..cb2452b --- /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 0000000..1482f27 --- /dev/null +++ b/Tests/Simple/simple.cxx @@ -0,0 +1,4 @@ +int main () +{ + return 0; +} |