Update visual configuration
This commit is contained in:
6
.vscode/launch.json
vendored
6
.vscode/launch.json
vendored
@@ -8,14 +8,14 @@
|
|||||||
"name": "(gdb) domo",
|
"name": "(gdb) domo",
|
||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/build/domo/domod",
|
"program": "${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/staging/usr/local/bin/domod",
|
||||||
"args": [],
|
"args": [],
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"cwd": "${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/staging",
|
"cwd": "${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/staging/",
|
||||||
"environment": [
|
"environment": [
|
||||||
{
|
{
|
||||||
"name": "LD_LIBRARY_PATH",
|
"name": "LD_LIBRARY_PATH",
|
||||||
"value": "${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/staging/usr/lib"
|
"value": "${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/staging/usr/lib:${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/staging/usr/local/lib"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"externalConsole": true,
|
"externalConsole": true,
|
||||||
|
|||||||
52
.vscode/settings.json
vendored
52
.vscode/settings.json
vendored
@@ -2,5 +2,57 @@
|
|||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
"**/_builds/dl": true,
|
"**/_builds/dl": true,
|
||||||
"**/_builds/*/buildroot/build": true
|
"**/_builds/*/buildroot/build": true
|
||||||
|
},
|
||||||
|
"files.associations": {
|
||||||
|
"*.ipp": "cpp",
|
||||||
|
"functional": "cpp",
|
||||||
|
"rope": "cpp",
|
||||||
|
"typeinfo": "cpp",
|
||||||
|
"typeindex": "cpp",
|
||||||
|
"array": "cpp",
|
||||||
|
"*.tcc": "cpp",
|
||||||
|
"cmath": "cpp",
|
||||||
|
"complex": "cpp",
|
||||||
|
"cstdint": "cpp",
|
||||||
|
"exception": "cpp",
|
||||||
|
"algorithm": "cpp",
|
||||||
|
"chrono": "cpp",
|
||||||
|
"system_error": "cpp",
|
||||||
|
"tuple": "cpp",
|
||||||
|
"type_traits": "cpp",
|
||||||
|
"initializer_list": "cpp",
|
||||||
|
"iosfwd": "cpp",
|
||||||
|
"istream": "cpp",
|
||||||
|
"new": "cpp",
|
||||||
|
"ostream": "cpp",
|
||||||
|
"sstream": "cpp",
|
||||||
|
"stdexcept": "cpp",
|
||||||
|
"streambuf": "cpp",
|
||||||
|
"cctype": "cpp",
|
||||||
|
"cfenv": "cpp",
|
||||||
|
"cinttypes": "cpp",
|
||||||
|
"cstdio": "cpp",
|
||||||
|
"cstdlib": "cpp",
|
||||||
|
"cwchar": "cpp",
|
||||||
|
"cwctype": "cpp",
|
||||||
|
"utility": "cpp",
|
||||||
|
"clocale": "cpp",
|
||||||
|
"csetjmp": "cpp",
|
||||||
|
"csignal": "cpp",
|
||||||
|
"cstdarg": "cpp",
|
||||||
|
"cstddef": "cpp",
|
||||||
|
"cstring": "cpp",
|
||||||
|
"ctime": "cpp",
|
||||||
|
"atomic": "cpp",
|
||||||
|
"codecvt": "cpp",
|
||||||
|
"condition_variable": "cpp",
|
||||||
|
"slist": "cpp",
|
||||||
|
"future": "cpp",
|
||||||
|
"limits": "cpp",
|
||||||
|
"memory": "cpp",
|
||||||
|
"mutex": "cpp",
|
||||||
|
"ratio": "cpp",
|
||||||
|
"scoped_allocator": "cpp",
|
||||||
|
"thread": "cpp"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
6
.vscode/tasks.json
vendored
6
.vscode/tasks.json
vendored
@@ -8,7 +8,7 @@
|
|||||||
{
|
{
|
||||||
"label": "X86_64 - cmake - domod",
|
"label": "X86_64 - cmake - domod",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "mkdir -p ${BUILD_DIR}/domo && cd ${BUILD_DIR}/domo && cmake -DMODULE_PATH=${workspaceRoot}/bsp/cmake-modules -DworkspaceRoot=${workspaceRoot} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=${workspaceRoot}/bsp/cmake-modules/toolchain-buildroot.cmake ${workspaceRoot}/src/prog/domod/builders/cmake",
|
"command": "mkdir -p ${BUILD_DIR}/domo && cd ${BUILD_DIR}/domo && cmake -DMODULE_PATH=${workspaceRoot}/bsp/cmake-modules -DworkspaceRoot=${workspaceRoot} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=${workspaceRoot}/bsp/cmake-modules/toolchain-buildroot.cmake -DCMAKE_INSTALL_PREFIX=${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/staging/usr/ ${workspaceRoot}/src/prog/domod/builders/cmake",
|
||||||
"group": "build",
|
"group": "build",
|
||||||
"options": {
|
"options": {
|
||||||
"env": {
|
"env": {
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
"cwd": "${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/build/domo",
|
"cwd": "${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/build/domo",
|
||||||
},
|
},
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "make",
|
"command": "make install",
|
||||||
"group": "build",
|
"group": "build",
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"echo": true,
|
"echo": true,
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
{
|
{
|
||||||
"label": "X86_64 - cmake - libubus-cpp",
|
"label": "X86_64 - cmake - libubus-cpp",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "mkdir -p ${BUILD_DIR}/ubus-cpp && cd ${BUILD_DIR}/ubus-cpp && cmake -DMODULE_PATH=${workspaceRoot}/bsp/cmake-modules -DworkspaceRoot=${workspaceRoot} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=${workspaceRoot}/bsp/cmake-modules/toolchain-buildroot.cmake -DCMAKE_INSTALL_PREFIX=${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/staging/ ${workspaceRoot}/src/lib/libubus-cpp/builders/cmake",
|
"command": "mkdir -p ${BUILD_DIR}/ubus-cpp && cd ${BUILD_DIR}/ubus-cpp && cmake -DMODULE_PATH=${workspaceRoot}/bsp/cmake-modules -DworkspaceRoot=${workspaceRoot} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=${workspaceRoot}/bsp/cmake-modules/toolchain-buildroot.cmake -DCMAKE_INSTALL_PREFIX=${workspaceRoot}/_builds/x86_64_domo-debug/buildroot/staging/usr/ ${workspaceRoot}/src/lib/libubus-cpp/builders/cmake",
|
||||||
"group": "build",
|
"group": "build",
|
||||||
"options": {
|
"options": {
|
||||||
"env": {
|
"env": {
|
||||||
|
|||||||
Reference in New Issue
Block a user