Generate compile_commands.json

remotes/origin/HEAD
Konstantinos Sideris 7 years ago
parent 0e91dae922
commit 208ca4f638
  1. 1
      .gitignore
  2. 3
      Makefile

1
.gitignore vendored

@ -81,6 +81,7 @@ result
*.dmg
dist/MacOS/nheko.app/Contents/MacOS/nheko
.clang
compile_commands.json
# AppImage
*.AppImage

@ -1,7 +1,8 @@
debug:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=1
@cmake --build build
@cp build/compile_commands.json .
ci:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo

Loading…
Cancel
Save