12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "version": 3,
- "configurePresets": [
- {
- "name": "default",
- "hidden": true,
- "generator": "Ninja",
- "binaryDir": "${sourceDir}/project/gcc/build/${presetName}",
- "toolchainFile": "${sourceDir}/project/gcc/cmake/gcc-arm-none-eabi.cmake",
- "cacheVariables": {
- "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
- }
- },
- {
- "name": "Debug",
- "inherits": "default",
- "cacheVariables": {
- "CMAKE_BUILD_TYPE": "Debug"
- }
- },
- {
- "name": "RelWithDebInfo",
- "inherits": "default",
- "cacheVariables": {
- "CMAKE_BUILD_TYPE": "RelWithDebInfo"
- }
- },
- {
- "name": "Release",
- "inherits": "default",
- "cacheVariables": {
- "CMAKE_BUILD_TYPE": "Release"
- }
- },
- {
- "name": "MinSizeRel",
- "inherits": "default",
- "cacheVariables": {
- "CMAKE_BUILD_TYPE": "MinSizeRel"
- }
- }
- ],
- "buildPresets": [
- {
- "name": "Debug",
- "configurePreset": "Debug"
- },
- {
- "name": "RelWithDebInfo",
- "configurePreset": "RelWithDebInfo"
- },
- {
- "name": "Release",
- "configurePreset": "Release"
- },
- {
- "name": "MinSizeRel",
- "configurePreset": "MinSizeRel"
- }
- ]
- }
|