From da6ab3ac4750c98fb99840701f1f84184eff9343 Mon Sep 17 00:00:00 2001 From: Samuel Sadok Date: Thu, 15 Apr 2021 08:53:26 +0200 Subject: [PATCH] add vscode config --- .vscode/c_cpp_properties.json | 23 +++++++++++++++++++++++ .vscode/settings.json | 3 +++ 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..472eab0 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,23 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/include/libusb-1.0", + "/usr/include/dbus-1.0", + "/usr/lib/dbus-1.0/include" + ], + "defines": [ + "FIBRE_ENABLE_SERVER=1", + "FIBRE_ENABLE_CLIENT=1", + "FIBRE_ENABLE_EVENT_LOOP=1", + "FIBRE_ALLOW_HEAP=1" + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "intelliSenseMode": "clang-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..abf363d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "C_Cpp.autoAddFileAssociations": false +} \ No newline at end of file