diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-01-23 16:49:20 +0100 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2022-01-23 16:49:20 +0100 |
| commit | b7bf80550d8cc61637a251aa2ba0e6cdb8d26b74 (patch) | |
| tree | 0aaa6907bb9c80554585e5fd214ea8a59b215bd7 /.vscode/tasks.json | |
| parent | e6af3384e1bd32045c217135192a37a60fabf71a (diff) | |
| download | rapier-b7bf80550d8cc61637a251aa2ba0e6cdb8d26b74.tar.gz rapier-b7bf80550d8cc61637a251aa2ba0e6cdb8d26b74.tar.bz2 rapier-b7bf80550d8cc61637a251aa2ba0e6cdb8d26b74.zip | |
Add vscode project files
Diffstat (limited to '.vscode/tasks.json')
| -rw-r--r-- | .vscode/tasks.json | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..de72ffb --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,75 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "run 3d (no-simd - release) ", + "type": "shell", + "command": "cargo", + "args": [ + "run", + "--bin", + "all_examples3", + "--release", + "--features", + "other-backends", + "--", + "--pause" + ], + "group": "build" + }, + { + "label": "run 3d (simd - release) ", + "type": "shell", + "command": "cargo", + "args": [ + "run", + "--bin", + "all_examples3", + "--release", + "--features", + "simd-stable", + "--features", + "other-backends", + "--", + "--pause" + ], + "group": "build" + }, + { + "label": "run 2d (no-simd - release) ", + "type": "shell", + "command": "cargo", + "args": [ + "run", + "--bin", + "all_examples2", + "--release", + "--features", + "other-backends", + "--", + "--pause" + ], + "group": "build" + }, + { + "label": "run 2d (simd - release) ", + "type": "shell", + "command": "cargo", + "args": [ + "run", + "--bin", + "all_examples2", + "--release", + "--features", + "simd-stable", + "--features", + "other-backends", + "--", + "--pause" + ], + "group": "build" + } + ] +}
\ No newline at end of file |
