From b7bf80550d8cc61637a251aa2ba0e6cdb8d26b74 Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 23 Jan 2022 16:49:20 +0100 Subject: Add vscode project files --- .vscode/launch.json | 326 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 326 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..3f328c5 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,326 @@ +{ + // 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 -- cgit