Build a basic "hello world" with CMake

This commit is contained in:
2023-03-04 12:38:01 -06:00
parent 956b321d71
commit 4372688574
3 changed files with 27 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#include<iostream>
int main(int argc, char *argv[]){
std::cout << "Hello World!" << std::endl;
return 0;
}
// vim: set ts=4 expandtab :