summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorValery Ivanov <ivalery111@gmail.com>2022-05-29 20:24:31 +0300
committerValery Ivanov <ivalery111@gmail.com>2022-06-01 18:38:12 +0300
commita1b49e6a3a6d05f699df08b5970ef01296ea3bf9 (patch)
treeeb1d99506481a36b2451cca2277c8efbad6291eb /.vscode
parentc78f381d2248f3115cc842ef83794eb40159a583 (diff)
downloadlibnet-a1b49e6a3a6d05f699df08b5970ef01296ea3bf9.tar.gz
devcontainer: initial
Provide the VS Code development environment for rapid setup of a development environment Signed-off-by: Valery Ivanov <ivalery111@gmail.com>
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/c_cpp_properties.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
new file mode 100644
index 0000000..fe68c9d
--- /dev/null
+++ b/.vscode/c_cpp_properties.json
@@ -0,0 +1,17 @@
+{
+ "configurations": [
+ {
+ "name": "Linux",
+ "includePath": [
+ "${workspaceFolder}/**"
+ ],
+ "defines": [],
+ "compilerPath": "/usr/bin/clang",
+ "cStandard": "c11",
+ "cppStandard": "c++17",
+ "intelliSenseMode": "clang-x64",
+ "compileCommands": "${workspaceFolder}/compile_commands.json"
+ }
+ ],
+ "version": 4
+}