From 61792d68f8103ea84537075d3fd944ca199b3b83 Mon Sep 17 00:00:00 2001 From: Khalil Estell Date: Wed, 20 Mar 2024 14:38:27 +0900 Subject: [PATCH] :technologist: Add .clangd file Enable developers to use the clangd LSP with their text editor of choice such as VSCode, NVIM, Zed and many others support clangd. Users should run `conan build .` to generate the necessary files for `clangd` to work. --- .clangd | 2 ++ .gitignore | 1 + 2 files changed, 3 insertions(+) create mode 100644 .clangd diff --git a/.clangd b/.clangd new file mode 100644 index 0000000..35ab70d --- /dev/null +++ b/.clangd @@ -0,0 +1,2 @@ +CompileFlags: + CompilationDatabase: build/Release \ No newline at end of file diff --git a/.gitignore b/.gitignore index 06228ce..4d07fa4 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ **/build/* **/CMakeUserPresets.json +*/.DS_Store