Kajetan Johannes Hammerle 4 роки тому
коміт
be50925cd2
2 змінених файлів з 13 додано та 0 видалено
  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'])