Initial commit

This commit is contained in:
shrukan
2022-12-22 21:40:39 -08:00
commit 9f47776564
23 changed files with 11061 additions and 0 deletions

5
src/hello.cpp Normal file
View File

@ -0,0 +1,5 @@
/*!
* \brief Main Entry Point
* \return Status code
*/
int main() { return 0; }

3
src/meson.build Normal file
View File

@ -0,0 +1,3 @@
sources = ['hello.cpp']
executable('hello', sources, include_directories : inc, install : false)