Added cmake variants

This commit is contained in:
Tim Keller
2021-07-25 20:12:34 +00:00
parent c0b84537b3
commit f7643a4d82
12 changed files with 245 additions and 69 deletions

View File

@@ -1,15 +1,18 @@
{
"configurations": [
{
"name": "Linux",
"name": "nrfCC",
"includePath": [
"${workspaceFolder}/**"
"${workspaceFolder}/**",
"${workspaceFolder}/src/**",
"${workspaceFolder}/src"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu11",
"cppStandard": "gnu++14",
"intelliSenseMode": "linux-gcc-x64",
"compilerPath": "${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin/arm-none-eabi-gcc",
"cStandard": "c11",
"cppStandard": "c++14",
"intelliSenseMode": "linux-gcc-arm",
"configurationProvider": "ms-vscode.cmake-tools",
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
}
],