Skip to content
Snippets Groups Projects
Commit 7dc5aa9d authored by Adrien Béraud's avatar Adrien Béraud
Browse files

build/dev: build in build_dev

parent 808eb688
Branches
Tags
No related merge requests found
...@@ -76,4 +76,5 @@ doc/Doxyfile ...@@ -76,4 +76,5 @@ doc/Doxyfile
# build dir # build dir
build build
build_dev
.DS_Store .DS_Store
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
"name": "dhtnode", "name": "dhtnode",
"type": "cppdbg", "type": "cppdbg",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/build/tools/dhtnode", "program": "${workspaceFolder}/build_dev/tools/dhtnode",
"args": ["-v", "-p", "4222"], "args": ["-v", "-p", "4222"],
"cwd": "${workspaceFolder}/build", "cwd": "${workspaceFolder}/build_dev",
"environment": [], "environment": [],
"setupCommands": [ "setupCommands": [
{ {
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
"name": "tests", "name": "tests",
"type": "cppdbg", "type": "cppdbg",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/build/opendht_unit_tests", "program": "${workspaceFolder}/build_dev/opendht_unit_tests",
"cwd": "${workspaceFolder}/build", "cwd": "${workspaceFolder}/build_dev",
"environment": [], "environment": [],
"setupCommands": [ "setupCommands": [
{ {
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
"label": "build", "label": "build",
"type": "shell", "type": "shell",
"options": { "options": {
"cwd": "${workspaceRoot}/build" "cwd": "${workspaceRoot}/build_dev"
}, },
"command": "make", "command": "make",
"args": ["-j4"], "args": ["-j4"],
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
"label": "cmake", "label": "cmake",
"type": "shell", "type": "shell",
"options": { "options": {
"cwd": "${workspaceRoot}/build" "cwd": "${workspaceRoot}/build_dev"
}, },
"command": "cmake", "command": "cmake",
"args": [ "args": [
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
"command": "mkdir", "command": "mkdir",
"args": [ "args": [
"-p", "-p",
"${workspaceRoot}/build" "${workspaceRoot}/build_dev"
] ]
}, },
] ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment