13 lines
267 B
Markdown
13 lines
267 B
Markdown
# practices
|
|
Repository with code from practice sessions
|
|
|
|
# Clangd
|
|
First, build the project to generate `compile_commands.json`:
|
|
```bash
|
|
cmake -B build
|
|
```
|
|
Then tell clangd where to find it by adding to `.clangd`:
|
|
```yaml
|
|
CompileFlags:
|
|
CompilationDatabase: build
|
|
``` |