add template config for vs code
This commit is contained in:
parent
55e5ad90f6
commit
8f2b378f7c
2 changed files with 23 additions and 2 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -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
17
.vscode/c_cpp_properties.template.json
vendored
Normal 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
|
||||
}
|
Loading…
Reference in a new issue