diff --git a/.gitignore b/.gitignore index 42f7c7e..f447012 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ -build/ +build/* out/ .vs/ -.vscode/ .idea/ tmp/ config.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..82d6448 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/include/opus" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "c17", + "cppStandard": "gnu++17", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file