CMakeSettings.json 881 B

123456789101112131415161718192021222324252627
  1. {
  2. "configurations": [
  3. {
  4. "name": "x64-Release",
  5. "generator": "Ninja",
  6. "configurationType": "RelWithDebInfo",
  7. "inheritEnvironments": [ "msvc_x64_x64" ],
  8. "buildRoot": "${projectDir}\\out\\build\\${name}",
  9. "installRoot": "${projectDir}\\out\\install\\${name}",
  10. "cmakeCommandArgs": "",
  11. "buildCommandArgs": "-v",
  12. "ctestCommandArgs": "",
  13. "variables": [
  14. {
  15. "name": "OPENCV_DIR",
  16. "value": "C:/projects/opencv",
  17. "type": "PATH"
  18. },
  19. {
  20. "name": "OPENVINO_LIB",
  21. "value": "C:/projetcs/inference_engine",
  22. "type": "PATH"
  23. }
  24. ]
  25. }
  26. ]
  27. }