add template config for vs code

This commit is contained in:
anna 2021-09-17 19:50:21 +02:00
parent 55e5ad90f6
commit 8f2b378f7c
Signed by: fef
GPG key ID: EC22E476DC2D3D84
2 changed files with 23 additions and 2 deletions

8
.gitignore vendored
View file

@ -1,2 +1,6 @@
build/
cmake-build/
/build
/cmake-build-*
# VS Code settings
/.vscode/*
!/.vscode/*.template.json

17
.vscode/c_cpp_properties.template.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
"configurations": [
{
"name": "GayBSD x86",
"includePath": [
"${workspaceFolder}/include"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++11",
"intelliSenseMode": "clang-x86",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}