small cmake introduction

This commit is contained in:
2022-01-11 14:58:45 +01:00
parent e289320376
commit 775598901b
4 changed files with 76 additions and 0 deletions

7
Cmake Intro/hello.cpp Normal file
View File

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