From 9bb585fc88dbfaa4b658f015a52f87ea23809241 Mon Sep 17 00:00:00 2001 From: jens Date: Fri, 8 Jul 2022 14:41:02 +0200 Subject: [PATCH] Updated IDE project --- .vscode/c_cpp_properties.json | 21 +++++++++++++++++++++ .vscode/settings.json | 5 +++++ 2 files changed, 26 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/settings.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..d7a999f --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,21 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "${workspaceFolder}/Source", + "${workspaceFolder}/JuceLibraryCode", + "${workspaceFolder}/../../libsrc", + "${workspaceFolder}/../../extlib/blaze", + "${workspaceFolder}/../../extlib/JUCE" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "gnu17", + "cppStandard": "gnu++17", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..2aff9d5 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "complex": "cpp" + } +} \ No newline at end of file