Initial commit, basic CMake project

Signed-off-by: Moritz Martinius <moritz@admiralackbar.de>
This commit is contained in:
2022-11-01 14:58:50 +01:00
commit bd9a39e185
7 changed files with 39 additions and 0 deletions

9
src/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <iostream>
int main(int argc, char** argv) {
std::cout << "Hello World!" << std::endl;
return 0;
}