I'm working on a fyne GUI for interacting with OpenCV, and ran into issues at distribution time because the binary isn't statically linked to OpenCV and the necessary dlls aren't present on the users' windows machines. #109 covers the same issue for MacOS.
Based on some quick internet searching, it sounds like the easiest solution is to bundle the exe in a directory with all the dlls you need.
I think this should be possible for me to do manually in my GitHub workflow, but it would be even nicer if fyne did it automatically as part of fyne package.
I'm working on a fyne GUI for interacting with OpenCV, and ran into issues at distribution time because the binary isn't statically linked to OpenCV and the necessary dlls aren't present on the users' windows machines. #109 covers the same issue for MacOS.
Based on some quick internet searching, it sounds like the easiest solution is to bundle the exe in a directory with all the dlls you need.
I think this should be possible for me to do manually in my GitHub workflow, but it would be even nicer if fyne did it automatically as part of
fyne package.