Skip to content

Commit 2ecf3b0

Browse files
committed
Merge branch 'dev'
2 parents cad9e5d + 9f804a7 commit 2ecf3b0

File tree

10 files changed

+1102
-567
lines changed

10 files changed

+1102
-567
lines changed

.vscode/c_cpp_properties.json

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
{
2-
"configurations": [
3-
{
4-
"name": "Linux",
5-
"includePath": [
6-
"${workspaceFolder}/**"
7-
],
8-
"defines": [],
9-
"compilerPath": "/usr/bin/gcc",
10-
"cStandard": "gnu17",
11-
"cppStandard": "gnu++14",
12-
"intelliSenseMode": "linux-gcc-x64",
13-
"compileCommands": "${workspaceFolder}/_build/compile_commands.json"
14-
}
15-
],
16-
"version": 4
17-
}
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": ["${workspaceFolder}/**"],
6+
"defines": [],
7+
"compilerPath": "/usr/bin/gcc",
8+
"cStandard": "gnu17",
9+
"cppStandard": "gnu++14",
10+
"intelliSenseMode": "linux-gcc-x64",
11+
"compileCommands": "${workspaceFolder}/_build/compile_commands.json"
12+
}
13+
],
14+
"version": 4
15+
}

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "cppdbg",
6+
"name": "Launch examples/img-capture",
7+
"request": "launch",
8+
"program": "${workspaceFolder}/_build/examples/img-capture",
9+
"args": [],
10+
"stopAtEntry": false,
11+
"cwd": "${fileDirname}",
12+
"environment": [],
13+
"MIMode": "gdb",
14+
"avoidWindowsConsoleRedirection": true,
15+
"setupCommands": [
16+
{
17+
"description": "Enable pretty-printing for gdb",
18+
"text": "-enable-pretty-printing",
19+
"ignoreFailures": true
20+
}
21+
]
22+
}
23+
]
24+
}

.vscode/settings.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
2-
"files.associations": {
3-
"drivers_api.h": "c",
4-
"fpi-compat.h": "c",
5-
"stdio.h": "c"
6-
}
7-
}
2+
"files.associations": {
3+
"*.c": "c",
4+
"*.h": "c"
5+
}
6+
}

.vscode/tasks.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"tasks": [
3+
{
4+
"type": "cppbuild",
5+
"label": "Meson: build current project",
6+
"command": "/usr/bin/meson",
7+
"args": ["compile"],
8+
"options": {
9+
"cwd": "${workspaceFolder}/_build"
10+
},
11+
"problemMatcher": ["$gcc"],
12+
"group": {
13+
"kind": "build",
14+
"isDefault": true
15+
},
16+
"detail": "Build the current project using meson."
17+
}
18+
],
19+
"version": "2.0.0"
20+
}

0 commit comments

Comments
 (0)