msvc_note.txt 833 B

1234567891011121314151617181920
  1. When building with msvc, the build folder will look like this.
  2. your_build_directory/
  3. ├───bin/
  4. ├───Debug/
  5. │ │ └───demo_all.exe
  6. │ │ └───...
  7. ├───Release/
  8. │ │ └───demo_all.exe
  9. │ │ └───...
  10. ├───demos_assets/
  11. │ ├───fonts/
  12. │ │ └───...
  13. │ └───images//
  14. └───opencv_world460.dll
  15. └───opencv_world460d.dll
  16. The executables inside Debug/ and Release/ depend on the presence of opencv_world460*.dll, opencv_world460d.dll, and demos_assets/
  17. If you want to run then from the Release/ or Debug/ folder, you will need to manually copy those files.