CMakeSettings.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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": "/path/to/opencv",
  17. "type": "PATH"
  18. },
  19. {
  20. "name": "OPENVINO_DIR",
  21. "value": "C:/Program Files (x86)/IntelSWTools/openvino/deployment_tools/inference_engine",
  22. "type": "PATH"
  23. },
  24. {
  25. "name": "NGRAPH_LIB",
  26. "value": "C:/Program Files (x86)/IntelSWTools/openvino/deployment_tools/ngraph/lib",
  27. "type": "PATH"
  28. },
  29. {
  30. "name": "GFLAGS_DIR",
  31. "value": "/path/to/gflags",
  32. "type": "PATH"
  33. },
  34. {
  35. "name": "WITH_STATIC_LIB",
  36. "value": "True",
  37. "type": "BOOL"
  38. },
  39. {
  40. "name": "GLOG_DIR",
  41. "value": "/path/to/glog",
  42. "type": "PATH"
  43. }
  44. ]
  45. }
  46. ]
  47. }