web-stack-project/README.md
2023-01-08 18:41:40 +01:00

1.2 KiB

web-stack-project

Build project

  • Open project in terminal
  • Run meson setup builddir, or CXX=clang-<version> meson setup builddir if clang and clang-version is different
  • Navigate into builddir, cd builddir
  • Compile meson compile
  • Run, ./browser or ./server

VS Code development setup

Install

Config

Add these to settings.json if necessary

{
    // probably necessary
    "clangd.onConfigChanged": "restart",

    // only necessary if default `/usr/bin/clangd` isn't the correct version
    "clangd.path": "/usr/bin/clangd-<version>", // <version> is a place holder, eg, `clangd-15`
}