|
| 1 | +{ |
| 2 | + "version": "2.0.0", |
| 3 | + "tasks": [ |
| 4 | + { |
| 5 | + "label": "build-sam-project", |
| 6 | + "dependsOrder": "sequence", |
| 7 | + "dependsOn": ["configure-sam", "build-sam-binary"], |
| 8 | + "problemMatcher": ["$gcc"], |
| 9 | + "group": "build" |
| 10 | + }, |
| 11 | + { |
| 12 | + "label": "build-pipeline-project", |
| 13 | + "dependsOrder": "sequence", |
| 14 | + "dependsOn": ["configure-pipeline", "build-pipeline-binary"], |
| 15 | + "problemMatcher": ["$gcc"], |
| 16 | + "group": "build" |
| 17 | + }, |
| 18 | + { |
| 19 | + "label": "build-yolo-project", |
| 20 | + "dependsOrder": "sequence", |
| 21 | + "dependsOn": ["configure-yolo", "build-yolo-binary"], |
| 22 | + "problemMatcher": ["$gcc"], |
| 23 | + "group": "build" |
| 24 | + }, |
| 25 | + { |
| 26 | + "label": "configure-sam", |
| 27 | + "type": "shell", |
| 28 | + "command": "cmake", |
| 29 | + "args": [ |
| 30 | + "-DCMAKE_BUILD_TYPE=Debug", |
| 31 | + "-S", "${workspaceFolder}/sam_inference", |
| 32 | + "-B", "${workspaceFolder}/sam_inference/build" |
| 33 | + ], |
| 34 | + "problemMatcher": ["$gcc"] |
| 35 | + }, |
| 36 | + { |
| 37 | + "label": "configure-pipeline", |
| 38 | + "type": "shell", |
| 39 | + "command": "cmake", |
| 40 | + "args": [ |
| 41 | + "-DCMAKE_BUILD_TYPE=Debug", |
| 42 | + "-S", "${workspaceFolder}/pipeline", |
| 43 | + "-B", "${workspaceFolder}/pipeline/build" |
| 44 | + ], |
| 45 | + "problemMatcher": ["$gcc"] |
| 46 | + }, |
| 47 | + { |
| 48 | + "label": "configure-yolo", |
| 49 | + "type": "shell", |
| 50 | + "command": "cmake", |
| 51 | + "args": [ |
| 52 | + "-DCMAKE_BUILD_TYPE=Debug", |
| 53 | + "-DCMAKE_POLICY_VERSION_MINIMUM=3.5", |
| 54 | + "-S", "${workspaceFolder}/", |
| 55 | + "-B", "${workspaceFolder}/build" |
| 56 | + ], |
| 57 | + "problemMatcher": ["$gcc"] |
| 58 | + }, |
| 59 | + { |
| 60 | + "label": "build-sam-binary", |
| 61 | + "type": "shell", |
| 62 | + "command": "cmake", |
| 63 | + "args": [ |
| 64 | + "--build", |
| 65 | + "${workspaceFolder}/sam_inference/build", |
| 66 | + "--config", "Debug" |
| 67 | + ], |
| 68 | + "problemMatcher": ["$gcc"] |
| 69 | + }, |
| 70 | + { |
| 71 | + "label": "build-pipeline-binary", |
| 72 | + "type": "shell", |
| 73 | + "command": "cmake", |
| 74 | + "args": [ |
| 75 | + "--build", |
| 76 | + "${workspaceFolder}/pipeline/build", |
| 77 | + "--config", "Debug" |
| 78 | + ], |
| 79 | + "problemMatcher": ["$gcc"] |
| 80 | + }, |
| 81 | + { |
| 82 | + "label": "build-yolo-binary", |
| 83 | + "type": "shell", |
| 84 | + "command": "cmake", |
| 85 | + "args": [ |
| 86 | + "--build", |
| 87 | + "${workspaceFolder}/build", |
| 88 | + "--config", "Debug" |
| 89 | + ], |
| 90 | + "problemMatcher": ["$gcc"] |
| 91 | + } |
| 92 | + |
| 93 | + ] |
| 94 | +} |
0 commit comments