Merge pull request #3660 from gudnimg/cmake-build-type

Set CMake build type to Release when using kit
This commit is contained in:
Guðni Már Gilbert 2022-10-05 18:08:06 +00:00 committed by GitHub
commit effd5aa5f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@
"name": "Local_avr-gcc-none-eabi",
"toolchainFile": "${workspaceFolder}/cmake/LocalAvrGcc.cmake",
"cmakeSettings": {
"CMAKE_MAKE_PROGRAM": "${workspaceFolder}/.dependencies/ninja-1.10.2/ninja"
"CMAKE_MAKE_PROGRAM": "${workspaceFolder}/.dependencies/ninja-1.10.2/ninja",
"CMAKE_BUILD_TYPE": "Release"
}
}
]