VSCODE: settings

master
Martin Gerhardy 2020-06-24 08:15:22 +02:00
parent 3383996193
commit 6e960b291f
4 changed files with 12 additions and 2 deletions

1
.gitignore vendored
View File

@ -12,5 +12,4 @@ luac.out
/CMakeLists.local
.DS_Store
autosave-*
/.vscode
compile_commands.json

1
.vscode/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
!settings.json

10
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"C_Cpp.autocomplete": "Disabled",
"C_Cpp.formatting": "Disabled",
"C_Cpp.errorSquiggles": "Disabled",
"C_Cpp.intelliSenseEngine": "Disabled",
"clangd.arguments": [
"-compile-commands-dir=build"
]
}

View File

@ -1,7 +1,7 @@
Q ?= @
UPDATEDIR := /tmp
BUILDTYPE ?= Debug
BUILDDIR ?= ./build/$(BUILDTYPE)
BUILDDIR ?= ./build
INSTALL_DIR ?= $(BUILDDIR)
GENERATOR := Ninja
CMAKE ?= cmake