From 5946db555013ca71c241333d0bf06444a48d85be Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Tue, 24 Nov 2020 21:28:29 +0800 Subject: [PATCH] [Add] Linux C++ properties --- .vscode/c_cpp_properties.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 87c2743a..1ee8fd6c 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -14,6 +14,21 @@ "cStandard": "c89", "cppStandard": "c++11", "intelliSenseMode": "gcc-x64" + }, + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE" + ], + "compilerPath": "/usr/bin/g++", + "cStandard": "c89", + "cppStandard": "c++11", + "intelliSenseMode": "gcc-x64" } ], "version": 4