diff --git a/.gitignore b/.gitignore index 3ade22e..5483668 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ testserver target *.jar .idea/ -.vscode/ +.vscode/settings.json src/main/cpp/inc/ #eclipse stuff diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..6728e19 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -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 +} \ No newline at end of file