aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorThierry Berger <contact@thierryberger.com>2024-11-19 16:33:26 +0100
committerGitHub <noreply@github.com>2024-11-19 16:33:26 +0100
commit510237cc29ebc667a8c158ef0340b7d1aa669a72 (patch)
tree772daf3fac2e463eba254900001fce5a659f2f92 /.vscode/launch.json
parentff79f4c67478f8c8045464cac22f9e57388cd4a0 (diff)
downloadrapier-510237cc29ebc667a8c158ef0340b7d1aa669a72.tar.gz
rapier-510237cc29ebc667a8c158ef0340b7d1aa669a72.tar.bz2
rapier-510237cc29ebc667a8c158ef0340b7d1aa669a72.zip
Profiling support (#743)
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json326
1 files changed, 0 insertions, 326 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 3f328c5..0000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,326 +0,0 @@
-{
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in library 'rapier2d'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--lib",
- "--package=rapier2d"
- ],
- "filter": {
- "name": "rapier2d",
- "kind": "lib"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in library 'rapier2d_f64'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--lib",
- "--package=rapier2d-f64"
- ],
- "filter": {
- "name": "rapier2d_f64",
- "kind": "lib"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in library 'rapier_testbed2d'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--lib",
- "--package=rapier_testbed2d"
- ],
- "filter": {
- "name": "rapier_testbed2d",
- "kind": "lib"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug executable 'all_examples2'",
- "cargo": {
- "args": [
- "build",
- "--bin=all_examples2",
- "--package=rapier-examples-2d"
- ],
- "filter": {
- "name": "all_examples2",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in executable 'all_examples2'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--bin=all_examples2",
- "--package=rapier-examples-2d"
- ],
- "filter": {
- "name": "all_examples2",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug executable 'all_benchmarks2'",
- "cargo": {
- "args": [
- "build",
- "--bin=all_benchmarks2",
- "--package=rapier-benchmarks-2d"
- ],
- "filter": {
- "name": "all_benchmarks2",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in executable 'all_benchmarks2'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--bin=all_benchmarks2",
- "--package=rapier-benchmarks-2d"
- ],
- "filter": {
- "name": "all_benchmarks2",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in library 'rapier3d'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--lib",
- "--package=rapier3d"
- ],
- "filter": {
- "name": "rapier3d",
- "kind": "lib"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in library 'rapier3d_f64'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--lib",
- "--package=rapier3d-f64"
- ],
- "filter": {
- "name": "rapier3d_f64",
- "kind": "lib"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in library 'rapier_testbed3d'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--lib",
- "--package=rapier_testbed3d"
- ],
- "filter": {
- "name": "rapier_testbed3d",
- "kind": "lib"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug executable 'all_examples3'",
- "cargo": {
- "args": [
- "build",
- "--bin=all_examples3",
- "--package=rapier-examples-3d"
- ],
- "filter": {
- "name": "all_examples3",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in executable 'all_examples3'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--bin=all_examples3",
- "--package=rapier-examples-3d"
- ],
- "filter": {
- "name": "all_examples3",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Run 'all_examples3'",
- "cargo": {
- "args": [
- "run",
- "--release",
- "--bin=all_examples3",
- "--package=rapier-examples-3d"
- ],
- "filter": {
- "name": "all_examples3",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug executable 'harness_capsules3'",
- "cargo": {
- "args": [
- "build",
- "--bin=harness_capsules3",
- "--package=rapier-examples-3d"
- ],
- "filter": {
- "name": "harness_capsules3",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in executable 'harness_capsules3'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--bin=harness_capsules3",
- "--package=rapier-examples-3d"
- ],
- "filter": {
- "name": "harness_capsules3",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug executable 'all_benchmarks3'",
- "cargo": {
- "args": [
- "build",
- "--bin=all_benchmarks3",
- "--package=rapier-benchmarks-3d"
- ],
- "filter": {
- "name": "all_benchmarks3",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- },
- {
- "type": "lldb",
- "request": "launch",
- "name": "Debug unit tests in executable 'all_benchmarks3'",
- "cargo": {
- "args": [
- "test",
- "--no-run",
- "--bin=all_benchmarks3",
- "--package=rapier-benchmarks-3d"
- ],
- "filter": {
- "name": "all_benchmarks3",
- "kind": "bin"
- }
- },
- "args": [],
- "cwd": "${workspaceFolder}"
- }
- ]
-} \ No newline at end of file