1

CMake: Initial Project Structure

This commit is contained in:
2023-03-20 15:38:42 +01:00
parent 5ef1940336
commit a71ff6f6f3
12 changed files with 62 additions and 0 deletions

6
main.cpp Normal file
View File

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