source: azure_iot_hub_f767zi/trunk/asp_baseplatform/.vscode/tasks.json@ 457

Last change on this file since 457 was 457, 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: 1.7 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}
Note: See TracBrowser for help on using the repository browser.