在 VSCode 中构建配置快捷方式

在 VSCode 中构建配置快捷方式

VSCode 中可以有一个构建配置快捷方式吗?

在“c_cpp_properties.json”的“includePath”和“defines”中,我有一些依赖于构建配置的变量。

例如,假设我有两个构建配置,分别为 A 和 B:

// BUILD CONFIGURATION A
"includePath": [
    path_used_in_both_configurations,
    path_used_only_in_configuration_A
],
"defines": [
    define_used_in_both_configurations,
    defined_used_only_in_configuration_A
]

// BUILD CONFIGURATION B
"includePath": [
    path_used_in_both_configurations,
    path_used_only_in_configuration_B
],
"defines": [
    define_used_in_both_configurations,
    defined_used_only_in_configuration_B
]

当我需要在两种配置之间切换时,我会手动删除旧的配置特定路径和定义并添加新的。有没有更简单的方法可以做到这一点?我甚至不知道如何谷歌搜索。

相关内容