CMakeSettings.json 831 B

12345678910111213141516171819202122232425262728
  1. {
  2. "configurations": [
  3. {
  4. "name": "x64-Debug",
  5. "generator": "Visual Studio 16 2019 Win64",
  6. "configurationType": "Debug",
  7. "inheritEnvironments": [ "msvc_x64_x64" ],
  8. "buildRoot": "${projectDir}\\out\\build\\${name}",
  9. "installRoot": "${projectDir}\\out\\install\\${name}",
  10. "cmakeCommandArgs": "",
  11. "buildCommandArgs": "",
  12. "ctestCommandArgs": "",
  13. "variables": []
  14. },
  15. {
  16. "name": "x86-Debug",
  17. "generator": "Visual Studio 16 2019",
  18. "configurationType": "Debug",
  19. "buildRoot": "${projectDir}\\out\\build\\${name}",
  20. "installRoot": "${projectDir}\\out\\install\\${name}",
  21. "cmakeCommandArgs": "",
  22. "buildCommandArgs": "",
  23. "ctestCommandArgs": "",
  24. "inheritEnvironments": [ "msvc_x86" ],
  25. "variables": []
  26. }
  27. ]
  28. }