-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.json
40 lines (40 loc) · 1.33 KB
/
tasks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ Aktive Datei kompilieren",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-I${workspaceFolder}/lib",
"-I${workspaceFolder}/lib/mockArduino",
"-I${workspaceFolder}/lib/mockSoftwareSerial",
"-I${workspaceFolder}/lib/Service",
"-I${workspaceFolder}/lib/MessageService",
"-I${workspaceFolder}/lib/ErrorService",
"-I${workspaceFolder}/lib/Frame",
"-I${workspaceFolder}/lib/Interface",
"-I${workspaceFolder}/lib/ModbusRTU",
"-g",
"-std=gnu++11",
"-Wno-c++11-extensions",
"${file}",
"${workspaceFolder}/lib/**/*.cpp",
"-o",
"${fileDirname}/build/${fileBasenameNoExtension}_exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Vom Debugger generierte Aufgabe."
}
],
"version": "2.0.0"
}