No description
| .vscode | ||
| src | ||
| .gitattributes | ||
| .gitignore | ||
| meson.build | ||
| README.md | ||
Hello, World!
An open-source C project template for modern development using Git, the LLVM toolchain (Clang compiler, and LLDB debugger), the Meson build system, and VSCodium as an IDE.
Building (command-line interface)
First, create the build directory with the following command:
meson setup build
Note: you only need to do this once to create the initial build directory.
After every code change you'll need to recompile with the following command:
meson compile -C build