diff options
Diffstat (limited to '.vscode/tasks.json')
| -rw-r--r-- | .vscode/tasks.json | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index de72ffb..0bc892b 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -29,9 +29,23 @@ "all_examples3", "--release", "--features", - "simd-stable", + "simd-stable,other-backends", + "--", + "--pause" + ], + "group": "build" + }, + { + "label": "run 3d (simd - parallel - release) ", + "type": "shell", + "command": "cargo", + "args": [ + "run", + "--bin", + "all_examples3", + "--release", "--features", - "other-backends", + "simd-stable,other-backends,parallel", "--", "--pause" ], @@ -63,9 +77,23 @@ "all_examples2", "--release", "--features", - "simd-stable", + "simd-stable,other-backends", + "--", + "--pause" + ], + "group": "build" + }, + { + "label": "run 2d (simd - parallel - release) ", + "type": "shell", + "command": "cargo", + "args": [ + "run", + "--bin", + "all_examples2", + "--release", "--features", - "other-backends", + "simd-stable,other-backends,parallel", "--", "--pause" ], |
