LVGL-simulation-example/simulator.code-workspace
Gregor Copoix 7a83e60683 added x11 support for lowlevel display support
the x11 driver has been added to the lv_library repository.
Now both variants (SDL/X11) can be selected in the Makefile. Additional fixes here have been applied.

select X11 by default
2023-11-06 14:51:50 +01:00

76 lines
1.6 KiB
Plaintext

{
// https://code.visualstudio.com/docs/editor/workspaces
// https://code.visualstudio.com/docs/editor/multi-root-workspaces
// https://code.visualstudio.com/docs/editor/variables-reference
"folders": [
{
"path": "."
},
],
// extensions.json section
"extensions": {
"recommendations": [
"ms-vscode.cpptools", // common C/C++ support
"ms-vscode.cpptools-themes", // general C/C++ theme
],
"unwantedRecommendations": [
]
},
// settings.json section
"settings": {
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"cmake.configureOnOpen": false,
"files.associations": {
"lv_demos.h": "c",
"lvgl.h": "c",
"lv_drv_conf.h": "c",
"stdlib.h": "c"
},
},
// tasks.json section
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": {
"owner": "cpp",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
},
],
},
// launch.json section
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug LVGL demo with gdb",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/bin/demo",
"args": [],
"cwd": "${fileDirname}",
"preLaunchTask": "Build",
"stopAtEntry": false,
},
],
},
}