CMakeSettings.json 778 B

123456789101112131415161718192021222324252627
  1. {
  2. "configurations": [
  3. {
  4. "name": "x64-Debug",
  5. "generator": "Ninja",
  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. },
  14. {
  15. "name": "x64-Release",
  16. "generator": "Ninja",
  17. "configurationType": "Release",
  18. "buildRoot": "${projectDir}\\out\\build\\${name}",
  19. "installRoot": "${projectDir}\\out\\install\\${name}",
  20. "cmakeCommandArgs": "",
  21. "buildCommandArgs": "",
  22. "ctestCommandArgs": "",
  23. "inheritEnvironments": [ "msvc_x64_x64" ],
  24. "variables": []
  25. }
  26. ]
  27. }