mirror of
https://github.com/stasenso/rp_pico_display_engine.git
synced 2026-06-26 21:32:41 +03:00
98 lines
2.6 KiB
JSON
98 lines
2.6 KiB
JSON
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
{
|
|
"name": "base",
|
|
"hidden": true,
|
|
"generator": "Unix Makefiles",
|
|
"cacheVariables": {
|
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
|
}
|
|
},
|
|
{
|
|
"name": "rp2040",
|
|
"hidden": true,
|
|
"cacheVariables": {
|
|
"PICO_BOARD": "pico"
|
|
}
|
|
},
|
|
{
|
|
"name": "rp2350",
|
|
"hidden": true,
|
|
"cacheVariables": {
|
|
"PICO_BOARD": "pico2"
|
|
}
|
|
},
|
|
{
|
|
"name": "pico-debug",
|
|
"displayName": "Pico RP2040 Debug",
|
|
"inherits": [
|
|
"base",
|
|
"rp2040"
|
|
],
|
|
"binaryDir": "${sourceDir}/build-pico-Debug",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
{
|
|
"name": "pico-release",
|
|
"displayName": "Pico RP2040 Release",
|
|
"inherits": [
|
|
"base",
|
|
"rp2040"
|
|
],
|
|
"binaryDir": "${sourceDir}/build-pico-Release",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
},
|
|
{
|
|
"name": "pico2-debug",
|
|
"displayName": "Pico 2 RP2350 Debug",
|
|
"inherits": [
|
|
"base",
|
|
"rp2350"
|
|
],
|
|
"binaryDir": "${sourceDir}/build-pico2-Debug",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
{
|
|
"name": "pico2-release",
|
|
"displayName": "Pico 2 RP2350 Release",
|
|
"inherits": [
|
|
"base",
|
|
"rp2350"
|
|
],
|
|
"binaryDir": "${sourceDir}/build-pico2-Release",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "pico-debug",
|
|
"displayName": "Build Pico RP2040 Debug",
|
|
"configurePreset": "pico-debug"
|
|
},
|
|
{
|
|
"name": "pico-release",
|
|
"displayName": "Build Pico RP2040 Release",
|
|
"configurePreset": "pico-release"
|
|
},
|
|
{
|
|
"name": "pico2-debug",
|
|
"displayName": "Build Pico 2 RP2350 Debug",
|
|
"configurePreset": "pico2-debug"
|
|
},
|
|
{
|
|
"name": "pico2-release",
|
|
"displayName": "Build Pico 2 RP2350 Release",
|
|
"configurePreset": "pico2-release"
|
|
}
|
|
]
|
|
}
|