CMakeSettings.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "configurations": [
  3. {
  4. "name": "Release",
  5. "configurationType": "Release",
  6. "generator": "Ninja",
  7. "inheritEnvironments": [ "msvc_x64_x64" ],
  8. "buildCommandArgs": "",
  9. "buildRoot": "${workspaceRoot}\\Build\\${name}",
  10. "cmakeCommandArgs": "",
  11. "variables": [
  12. ]
  13. },
  14. {
  15. "name": "Debug",
  16. "configurationType": "Debug",
  17. "generator": "Ninja",
  18. "inheritEnvironments": [ "msvc_x64_x64" ],
  19. "buildCommandArgs": "",
  20. "buildRoot": "${workspaceRoot}\\Build\\${name}",
  21. "cmakeCommandArgs": "",
  22. "variables": [
  23. ]
  24. },
  25. {
  26. "name": "Release (arm64)",
  27. "configurationType": "Release",
  28. "generator": "Ninja",
  29. "inheritEnvironments": [ "msvc_arm64_x64" ],
  30. "buildCommandArgs": "",
  31. "buildRoot": "${workspaceRoot}\\Build\\${name}",
  32. "cmakeCommandArgs": "",
  33. "variables": [
  34. {
  35. "name": "CMAKE_SYSTEM_NAME",
  36. "value": "Windows"
  37. },
  38. {
  39. "name": "CMAKE_SYSTEM_PROCESSOR",
  40. "value": "aarch64"
  41. }
  42. ]
  43. },
  44. {
  45. "name": "Debug (arm64)",
  46. "configurationType": "Debug",
  47. "generator": "Ninja",
  48. "inheritEnvironments": [ "msvc_arm64_x64" ],
  49. "buildCommandArgs": "",
  50. "buildRoot": "${workspaceRoot}\\Build\\${name}",
  51. "cmakeCommandArgs": "",
  52. "variables": [
  53. {
  54. "name": "CMAKE_SYSTEM_NAME",
  55. "value": "Windows"
  56. },
  57. {
  58. "name": "CMAKE_SYSTEM_PROCESSOR",
  59. "value": "aarch64"
  60. }
  61. ]
  62. }
  63. ]
  64. }