CMakeSettings.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "configurations": [
  3. {
  4. "name": "x64-Debug",
  5. "generator": "Ninja",
  6. "configurationType": "Debug",
  7. "inheritEnvironments": [ "msvc_x64_x64" ],
  8. "buildRoot": "${projectDir}\\build-${name}",
  9. "installRoot": "${projectDir}\\install-${name}",
  10. "cmakeCommandArgs": "",
  11. "buildCommandArgs": "",
  12. "ctestCommandArgs": "",
  13. "variables": [
  14. // Replace path with your TurboJPEG installation path
  15. //{ "name": "TurboJPEG_INCLUDE_DIRS", "type": "PATH", "value": "YourTurboJPEGPath/libjpeg-turbo64/include" },
  16. //{ "name": "TurboJPEG_LIBRARY", "value": "YourTurboJPEGPath/libjpeg-turbo64/lib/turbojpeg.lib", "type": "FILEPATH" }
  17. ],
  18. "environments": [
  19. // Replace path with your installation path
  20. //{ "QTDIR": "C:/Qt/6.2.2/msvc2019_64/" },
  21. //{ "VULKAN_SDK": "C:/VulkanSDK/1.2.182.0" }
  22. ]
  23. },
  24. {
  25. "name": "x64-Release",
  26. "generator": "Ninja",
  27. "configurationType": "Release",
  28. "buildRoot": "${projectDir}\\build-${name}",
  29. "installRoot": "${projectDir}\\install-${name}",
  30. "cmakeCommandArgs": "",
  31. "buildCommandArgs": "package",
  32. "ctestCommandArgs": "",
  33. "inheritEnvironments": [ "msvc_x64_x64" ],
  34. "variables": [
  35. // Replace path with your TurboJPEG installation path
  36. //{ "name": "TurboJPEG_INCLUDE_DIRS", "type": "PATH", "value": "YourTurboJPEGPath/libjpeg-turbo64/include" },
  37. //{ "name": "TurboJPEG_LIBRARY", "value": "YourTurboJPEGPath/libjpeg-turbo64/lib/turbojpeg.lib", "type": "FILEPATH" }
  38. ],
  39. "environments": [
  40. // Replace path with your installation path
  41. //{ "QTDIR": "C:/Qt/6.2.2/msvc2019_64/" },
  42. //{ "VULKAN_SDK": "C:/VulkanSDK/1.2.182.0" }
  43. ]
  44. }
  45. ]
  46. }