source: azure_iot_hub_riscv/trunk/app_iothub_client/.vscode/tasks.json@ 453

Last change on this file since 453 was 453, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/json;charset=UTF-8
File size: 3.7 KB
Line 
1{
2 "version": "2.0.0",
3 "name": "make",
4 "type": "shell",
5 "problemMatcher": {
6 "owner": "cpp",
7 "fileLocation": [
8 "relative",
9 "${workspaceFolder}/Debug"
10 ],
11 "pattern": {
12 "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error|fatal error):\\s+(.*)$",
13 "file": 1,
14 "line": 2,
15 "column": 3,
16 "severity": 4,
17 "message": 5
18 }
19 },
20 "tasks": [
21 {
22 "label": "build all",
23 "args": [
24 "-j",
25 "1",
26 "-C",
27 "..",
28 "all"
29 ],
30 "linux": {
31 "command": "make"
32 },
33 "osx": {
34 "command": "make"
35 },
36 "windows": {
37 "command": "make.exe"
38 },
39 "group": {
40 "kind": "build",
41 "isDefault": true
42 }
43 },
44 {
45 "label": "clean all",
46 "args": [
47 "-C",
48 "..",
49 "clean"
50 ],
51 "linux": {
52 "command": "make"
53 },
54 "osx": {
55 "command": "make"
56 },
57 "windows": {
58 "command": "make.exe"
59 },
60 "group": "build"
61 },
62 {
63 "label": "realclean all",
64 "args": [
65 "-C",
66 "..",
67 "realclean"
68 ],
69 "linux": {
70 "command": "make"
71 },
72 "osx": {
73 "command": "make"
74 },
75 "windows": {
76 "command": "make.exe"
77 },
78 "group": "build"
79 },
80 {
81 "label": "build app_iothub_client",
82 "args": [
83 "-j",
84 "1",
85 "all"
86 ],
87 "linux": {
88 "command": "make"
89 },
90 "osx": {
91 "command": "make"
92 },
93 "windows": {
94 "command": "make.exe"
95 },
96 "group": "build"
97 },
98 {
99 "label": "cfg app_iothub_client",
100 "args": [
101 "-j",
102 "1",
103 "kernel_cfg.h"
104 ],
105 "linux": {
106 "command": "make"
107 },
108 "osx": {
109 "command": "make"
110 },
111 "windows": {
112 "command": "make.exe"
113 },
114 "group": "build"
115 },
116 {
117 "label": "clean app_iothub_client",
118 "args": [
119 "clean"
120 ],
121 "linux": {
122 "command": "make"
123 },
124 "osx": {
125 "command": "make"
126 },
127 "windows": {
128 "command": "make.exe"
129 },
130 "group": "build"
131 },
132 {
133 "label": "realclean app_iothub_client",
134 "args": [
135 "realclean"
136 ],
137 "linux": {
138 "command": "make"
139 },
140 "osx": {
141 "command": "make"
142 },
143 "windows": {
144 "command": "make.exe"
145 },
146 "group": "build"
147 },
148 {
149 "label": "write app_iothub_client",
150 "command": "/C/Python38/python.exe",
151 "args": [
152 "../tools/kflash/kflash.py",
153 "-p",
154 "COM12",
155 "-b",
156 "1500000",
157 "Debug/app_iothub_client.bin"
158 ]
159 }
160 ]
161}
Note: See TracBrowser for help on using the repository browser.