Browse Source

new tests

Ken Martin 24 years ago
parent
commit
2b895779c2
2 changed files with 7 additions and 0 deletions
  1. 3 0
      Tests/Simple/CMakeLists.txt
  2. 4 0
      Tests/Simple/simple.cxx

+ 3 - 0
Tests/Simple/CMakeLists.txt

@@ -0,0 +1,3 @@
+# a simple test case
+PROJECT (simple)
+ADD_EXECUTABLE (simple simple.cxx)

+ 4 - 0
Tests/Simple/simple.cxx

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