CMakeSettings.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "configurations": [
  3. {
  4. "name": "x64-Debug",
  5. "generator": "Ninja",
  6. "configurationType": "Debug",
  7. "buildRoot": "${projectDir}/build/${name}",
  8. "installRoot": "${projectDir}/install/${name}",
  9. "inheritEnvironments": ["msvc_x64_x64"],
  10. "cmakeCommandArgs": "",
  11. "buildCommandArgs": "",
  12. "variables": [
  13. {
  14. "name": "CMAKE_CXX_COMPILER",
  15. "value": "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe",
  16. "type": "FILEPATH"
  17. },
  18. {
  19. "name": "CMAKE_CXX_FLAGS",
  20. "value": "/utf-8",
  21. "type": "STRING"
  22. }
  23. ]
  24. },
  25. {
  26. "name": "x64-Release",
  27. "generator": "Ninja",
  28. "configurationType": "Release",
  29. "buildRoot": "${projectDir}/build/${name}",
  30. "installRoot": "${projectDir}/install/${name}",
  31. "inheritEnvironments": ["msvc_x64_x64"],
  32. "cmakeCommandArgs": "",
  33. "buildCommandArgs": "",
  34. "variables": [
  35. {
  36. "name": "CMAKE_CXX_COMPILER",
  37. "value": "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe",
  38. "type": "FILEPATH"
  39. },
  40. {
  41. "name": "CMAKE_CXX_FLAGS",
  42. "value": "/utf-8",
  43. "type": "STRING"
  44. }
  45. ]
  46. }
  47. ]
  48. }