We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1692068 commit 9122e13Copy full SHA for 9122e13
build_scripts/Windows/internal/2a_portable.sh
@@ -25,6 +25,11 @@ done
25
${QT_DIR}windeployqt $INSTALL_PATH/relight.exe
26
${QT_DIR}windeployqt $INSTALL_PATH/relightlab.exe
27
28
+OPENCV_PATH="C:/tools/opencv/build/x64/vc16/bin" # Chocolatey
29
+
30
+# Copy OpenCV DLLs
31
+echo "Copying OpenCV DLLs from $OPENCV_PATH to $INSTALL_PATH..."
32
+cp "$OPENCV_PATH"/*.dll "$INSTALL_PATH" || { echo "Failed to copy OpenCV DLLs"; exit 1; }
33
34
# remove all .lib files
35
for file in $(find $INSTALL_PATH -name '*.lib');
0 commit comments