浏览代码

Clangd config

Kajetan Johannes Hammerle 1 月之前
父节点
当前提交
bc4cad6dad
共有 3 个文件被更改,包括 5 次插入0 次删除
  1. 3 0
      .clangd
  2. 1 0
      .gitignore
  3. 1 0
      start

+ 3 - 0
.clangd

@@ -0,0 +1,3 @@
+CompileFlags:
+  Add: [-ferror-limit=0]
+  CompilationDatabase: ./build/

+ 1 - 0
.gitignore

@@ -1,3 +1,4 @@
 tetris
 *.swp
 build/
+.cache/

+ 1 - 0
start

@@ -3,6 +3,7 @@ set -e
 clear
 cd "$(dirname "$0")"
 
+export CMAKE_EXPORT_COMPILE_COMMANDS=true
 folder="build"
 if [ ! -e "$folder" ]; then
     cmake -B "$folder" -S . -G Ninja