Skip to content

Commit

Permalink
added devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
pattacini committed Dec 30, 2024
1 parent 30f6ce1 commit 408031a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "CDE for robots-configuration",
"image": "ghcr.io/robotology/robots-configuration:latest",
"remoteUser": "gitpod",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
}
}
},
"postAttachCommand": [
"mkdir -p build && cd build",
"cmake .. -DCMAKE_PREFIX_PATH=${DEPENDENCIES_DIR}/install -DCMAKE_INSTALL_PREFIX=${DEPENDENCIES_DIR}/install -DBUILD_TESTING:BOOL=ON -DINSTALL_ALL_ROBOTS:BOOL=ON",
"cmake --build . --config Release --target install"
]
}

0 comments on commit 408031a

Please sign in to comment.