feat: basic cmake hello world with clangd tooling

This commit is contained in:
Michael Mandl 2023-10-10 14:42:07 +02:00
commit 6260ce47dc
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
6 changed files with 139 additions and 0 deletions

6
src/main.cpp Normal file
View file

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