CMakeSettings.json 1.5 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": "C:/projects/opencv",
  17. "type": "PATH"
  18. },
  19. {
  20. "name": "PADDLE_DIR",
  21. "value": "C:/projects/fluid_install_dir_win_cpu_1.6/fluid_install_dir_win_cpu_1.6",
  22. "type": "PATH"
  23. },
  24. {
  25. "name": "CMAKE_BUILD_TYPE",
  26. "value": "Release",
  27. "type": "STRING"
  28. },
  29. {
  30. "name": "WITH_STATIC_LIB",
  31. "value": "True",
  32. "type": "BOOL"
  33. },
  34. {
  35. "name": "WITH_MKL",
  36. "value": "True",
  37. "type": "BOOL"
  38. },
  39. {
  40. "name": "WITH_GPU",
  41. "value": "False",
  42. "type": "BOOL"
  43. }
  44. ]
  45. }
  46. ]
  47. }