57e625d4dc
* Only use one Dockerfile and build.sh script for both docker and devcontainer * Remove all now unneccessary tasks and scripts * Update to clang-format-14 * Move devcontainer.json into root folder * Fix conditional statements in Dockerfile * Move .devcontainer/README into doc/usingDevcontainers * Remove obsolete VSCode Task * Change standard compiler path to the correct compiler * Set GDB Path for debugging * Hide broken buttons from CMake Extension * Refactor .devcontainer * Remove unneccessary postBuildCommand * Add devcontainer dependencies to all docker images * Add Devcontainer Debug launch config * Add an additional c_cpp_properties config as a fallback for devcontainer * Remove obsolete Docker Argument * Fix wrong C/Cpp versions * Fix silent fail of gdb, add libncurses5
71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
{
|
|
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
|
|
"cmake.configureArgs": [
|
|
"-DARM_NONE_EABI_TOOLCHAIN_PATH=${env:TOOLS_DIR}/${env:GCC_ARM_PATH}",
|
|
"-DNRF5_SDK_PATH=${env:TOOLS_DIR}/${env:NRF_SDK_VER}",
|
|
],
|
|
"cmake.statusbar.advanced": {
|
|
"launch": {
|
|
"visibility": "hidden"
|
|
},
|
|
"launchTarget": {
|
|
"visibility": "hidden"
|
|
},
|
|
"debug": {
|
|
"visibility": "hidden"
|
|
}
|
|
},
|
|
"cmake.generator": "Unix Makefiles",
|
|
"clang-tidy.buildPath": "build/compile_commands.json",
|
|
"files.associations": {
|
|
"array": "cpp",
|
|
"atomic": "cpp",
|
|
"bit": "cpp",
|
|
"*.tcc": "cpp",
|
|
"bitset": "cpp",
|
|
"cctype": "cpp",
|
|
"chrono": "cpp",
|
|
"clocale": "cpp",
|
|
"cmath": "cpp",
|
|
"cstdarg": "cpp",
|
|
"cstddef": "cpp",
|
|
"cstdint": "cpp",
|
|
"cstdio": "cpp",
|
|
"cstdlib": "cpp",
|
|
"ctime": "cpp",
|
|
"cwchar": "cpp",
|
|
"cwctype": "cpp",
|
|
"deque": "cpp",
|
|
"unordered_map": "cpp",
|
|
"vector": "cpp",
|
|
"exception": "cpp",
|
|
"algorithm": "cpp",
|
|
"functional": "cpp",
|
|
"iterator": "cpp",
|
|
"memory": "cpp",
|
|
"memory_resource": "cpp",
|
|
"numeric": "cpp",
|
|
"optional": "cpp",
|
|
"random": "cpp",
|
|
"ratio": "cpp",
|
|
"string": "cpp",
|
|
"string_view": "cpp",
|
|
"system_error": "cpp",
|
|
"tuple": "cpp",
|
|
"type_traits": "cpp",
|
|
"utility": "cpp",
|
|
"fstream": "cpp",
|
|
"initializer_list": "cpp",
|
|
"iosfwd": "cpp",
|
|
"istream": "cpp",
|
|
"limits": "cpp",
|
|
"new": "cpp",
|
|
"ostream": "cpp",
|
|
"sstream": "cpp",
|
|
"stdexcept": "cpp",
|
|
"streambuf": "cpp",
|
|
"cinttypes": "cpp",
|
|
"typeinfo": "cpp"
|
|
}
|
|
}
|