How to use an external executable (Sidecar) in Tauri and correctly load a dynamic link library (DLL)? #11836
Unanswered
Burial0268
asked this question in
Q&A
Replies: 1 comment
-
On Windows you can just bundle the files as resources instead, and spawn the sidecar as a normal Command.
yeah, that's the default way to do it on windows. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I’m currently developing a Tauri app and plan to embed an external executable (sidecar) on the Windows platform. This executable depends on a dynamic link library (DLL), but I’m encountering difficulties ensuring that the DLL is loaded correctly.
I would like to ask for help regarding how to make sure the external executable can properly call its dependent DLL under the following circumstances:
DLL Location:
PATH
environment variable to specify the DLL’s location?Configuration in Tauri:
I’d appreciate any advice or shared experience that could help me resolve this issue.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions