settings.json 777 B

1234567891011121314151617181920212223242526
  1. {
  2. // These settings tweaks to the cmake plugin will ensure
  3. // that you debug using cortex-debug instead of trying to launch
  4. // a Pico binary on the host
  5. "cmake.statusbar.advanced": {
  6. "debug": {
  7. "visibility": "hidden"
  8. },
  9. "launch": {
  10. "visibility": "hidden"
  11. },
  12. "build": {
  13. "visibility": "hidden"
  14. },
  15. "buildTarget": {
  16. "visibility": "hidden"
  17. }
  18. },
  19. "cmake.buildBeforeRun": true,
  20. "cmake.configureOnOpen": true,
  21. "cmake.configureSettings": {
  22. "CMAKE_MODULE_PATH": "${env:PICO_INSTALL_PATH}/pico-sdk-tools"
  23. },
  24. "cmake.generator": "Ninja",
  25. "C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools"
  26. }