Kajetan Johannes Hammerle 3 years ago
commit
be50925cd2
2 changed files with 13 additions and 0 deletions
  1. 6 0
      Main.cpp
  2. 7 0
      meson.build

+ 6 - 0
Main.cpp

@@ -0,0 +1,6 @@
+#include <iostream>
+
+int main() {
+    std::cout << "test2\n";
+    return 0;
+}

+ 7 - 0
meson.build

@@ -0,0 +1,7 @@
+project('gaming core tests', 'cpp')
+
+sources = ['Main.cpp']
+
+executable('tests', 
+    sources: sources,
+    cpp_args: ['-Wall', '-Wextra', '-pedantic', '-Werror'])