CMakePresets.json 840 B

1234567891011121314151617181920
  1. {
  2. "version": 3,
  3. "configurePresets": [
  4. {
  5. "name": "windows-vcpkg",
  6. "displayName": "Windows vcpkg",
  7. "description": "Configure for Windows using vcpkg and local Qt6 installation",
  8. "generator": "Visual Studio 18 2026",
  9. "binaryDir": "${sourceDir}/build",
  10. "cacheVariables": {
  11. "CMAKE_TOOLCHAIN_FILE": "c:/vcpkg/scripts/buildsystems/vcpkg.cmake",
  12. "Qt6_DIR": "C:/Qt/6.11.0/msvc2022_64/lib/cmake/Qt6/",
  13. "Protobuf_DIR": "C:/vcpkg/installed/x64-windows/share/protobuf",
  14. "flatbuffers_DIR": "C:/vcpkg/installed/x64-windows/share/flatbuffers",
  15. "quirc_DIR": "C:/vcpkg/installed/x64-windows/share/quirc",
  16. "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
  17. }
  18. }
  19. ]
  20. }