I created a QT app that needs two dlls files at runtime to resolve some function from them,
I have two questions:
1) Can i add that files to QT Resource to make the App loads them directly from resource without extracting to local path ?
2) If the Answer is "no"; How can i add a path to make the App searchs for that dlls in ?
Note: Names of dll files are stored in a ".a" lib that compiled with the App.
EDIT:
My situation is like the next:
let's say I built MingW QT 5.13.1 from the Source statically with "-openssl-runtime".
Now each app we build using that MingW will search for libcrypto-1_1.dll
& libssl-1_1.dll
in the same exe dir BUT the app can run without them only will face TLS initialization failed
when requesting https
urls.
Can i make the App load that dlls from Resource or force the App to search for them in another Path ?.