source: azure_iot_hub_riscv/trunk/asp_baseplatform/.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: 2.0 KB
Line 
1{
2 // See https://go.microsoft.com/fwlink/?LinkId=733558
3 // for the documentation about the tasks.json format
4 "version": "2.0.0",
5 "name": "make",
6 "type": "shell",
7 "problemMatcher": {
8 "owner": "cpp",
9 "fileLocation": [
10 "relative",
11 "${workspaceFolder}/Debug"
12 ],
13 "pattern": {
14 "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error|fatal error):\\s+(.*)$",
15 "file": 1,
16 "line": 2,
17 "column": 3,
18 "severity": 4,
19 "message": 5
20 }
21 },
22 "tasks": [
23 {
24 "label": "build asp_baseplatform",
25 "args": [
26 "all"
27 ],
28 "linux": {
29 "command": "make"
30 },
31 "osx": {
32 "command": "make"
33 },
34 "windows": {
35 "command": "make.exe"
36 },
37 "group": "build"
38 },
39 {
40 "label": "clean asp_baseplatform",
41 "args": [
42 "clean"
43 ],
44 "linux": {
45 "command": "make"
46 },
47 "osx": {
48 "command": "make"
49 },
50 "windows": {
51 "command": "make.exe"
52 },
53 "group": "build"
54 },
55 {
56 "label": "realclean asp_baseplatform",
57 "args": [
58 "realclean"
59 ],
60 "linux": {
61 "command": "make"
62 },
63 "osx": {
64 "command": "make"
65 },
66 "windows": {
67 "command": "make.exe"
68 },
69 "group": "build"
70 },
71 {
72 "label": "write asp_baseplatform",
73 "command": "/C/Python38/python.exe",
74 "args": [
75 "../tools/kflash/kflash.py",
76 "-p",
77 "COM12",
78 "-b",
79 "1500000",
80 "OBJ/K210_GCC/DEMO/asp.bin"
81 ]
82 }
83 ]
84}
Note: See TracBrowser for help on using the repository browser.