From 8d938eaad8db4d37da58f24f766ef3e40bd23c07 Mon Sep 17 00:00:00 2001 From: Andrew Lu Date: Thu, 28 Mar 2024 19:45:54 -0400 Subject: [PATCH] Don't add compileCommands to c_cpp_properties (#215) --- src/workspace_utils.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/workspace_utils.ts b/src/workspace_utils.ts index 96f1716..2d34955 100644 --- a/src/workspace_utils.ts +++ b/src/workspace_utils.ts @@ -292,12 +292,6 @@ const modifyCCppJson = async ( json.configurations[0].includePath.push(include); } - // Secibdm setup compile_commands.json filepath - json.configurations[0].compileCommands = path.join( - dirpath.fsPath, - "compile_commands.json" - ); - // Third, setup cStandard, cppStandard, and intelliSenseMode json.configurations[0].cStandard = "gnu11"; json.configurations[0].cppStandard = "gnu++20";