vscode cpp settings

This commit is contained in:
mrbesen 2020-11-12 14:21:52 +01:00
parent 0fd3466b11
commit 793b06e4e3
Signed by: MrBesen
GPG Key ID: 596B2350DCD67504
2 changed files with 20 additions and 1 deletions

2
.gitignore vendored
View File

@ -4,7 +4,7 @@ testserver
target
*.jar
.idea/
.vscode/
.vscode/settings.json
src/main/cpp/inc/
#eclipse stuff

19
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/src/main/cpp/inc/**",
"${workspaceFolder}/target/inc/**",
"/usr/lib/jvm/java-8-openjdk-amd64/include/**",
"/usr/lib/jvm/java-8-openjdk-amd64/include/linux/**"
],
"defines": [],
"compilerPath": "/usr/bin/g++",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}