Change build system to meson

This commit is contained in:
2022-11-08 19:15:16 +01:00
parent 2913a272d1
commit cc2316a497
17 changed files with 208 additions and 118 deletions

View File

@@ -1 +1,12 @@
{}
{
"configurations": [
{
"name": "Linux",
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17",
"compileCommands": "/builddir/compile_commands.json"
}
],
"version": 4
}

View File

@@ -2,5 +2,7 @@
"clangd.arguments": [ "-log=verbose",
"-pretty",
"--background-index",
"--compile-commands-dir=${workspaceFolder}/build"]
"--compile-commands-dir=${workspaceFolder}/builddir",
"-std=c++17"
]
}