From db466b45c276515277112af17e277cd9f1527b06 Mon Sep 17 00:00:00 2001 From: Andrew Lu Date: Thu, 21 Mar 2024 20:25:52 -0400 Subject: [PATCH] Don't add compileCommands to c_cpp_properties --- 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";