49 lines
		
	
	
		
			840 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			840 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   	// See https://go.microsoft.com/fwlink/?LinkId=733558
 | |
|    	// for the documentation about the tasks.json format
 | |
|    	"version": "2.0.0",
 | |
| 	"tasks": [
 | |
| 		{
 | |
| 			"label": "Build AerScript Interpreter",
 | |
| 			"type": "shell",
 | |
| 			"command": "make",
 | |
| 			"group": {
 | |
| 				"kind": "build",
 | |
| 				"isDefault": true
 | |
| 			},
 | |
| 			"presentation": {
 | |
| 				"reveal": "silent"
 | |
| 			}
 | |
| 		},
 | |
| 		{
 | |
| 			"label": "Clean AerScript Interpreter",
 | |
| 			"type": "shell",
 | |
| 			"command": "make",
 | |
| 			"args": [
 | |
| 				"clean"
 | |
| 			],
 | |
| 			"group": {
 | |
| 				"kind": "build",
 | |
| 				"isDefault": true
 | |
| 			},
 | |
| 			"presentation": {
 | |
| 				"reveal": "silent"
 | |
| 			}
 | |
| 		},
 | |
| 		{
 | |
| 			"label": "Style AerScript Interpreter Code",
 | |
| 			"type": "shell",
 | |
| 			"command": "make",
 | |
| 			"args": [
 | |
| 				"style"
 | |
| 			],
 | |
| 			"group": {
 | |
| 				"kind": "build",
 | |
| 				"isDefault": true
 | |
| 			},
 | |
| 			"presentation": {
 | |
| 				"reveal": "silent"
 | |
| 			}
 | |
| 		}
 | |
| 	]
 | |
| } |