erius
cab1b88a77
Disabled warnings as errors bumped the cmake min version to 3.12 for c++20 support and -j flag Placed a CMakeLists.txt in each subdirectory of the project
7 lines
138 B
C++
7 lines
138 B
C++
#include <iostream>
|
|
#include <ostream>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
std::cout << "Hello, World!" << std::endl;
|
|
return 0;
|
|
}
|