#DLLs on Windows
9 messages · Page 1 of 1 (latest)
You can bundle additional files into your installer using Tauri's resources (https://tauri.app/v1/guides/building/resources) in the bundler config section of tauri.conf.json (https://tauri.app/v1/api/config/#bundleconfig.resources).
If you want to only include the DLL files on Windows, you can use a platform-specific configuration file (https://tauri.app/v1/api/config#platform-specific-configuration).
ok, but this will not copy DLLs on system path that I can use it from my app right?
Can you get a bit more specific about your use-case? Why do the dlls need to be on the system path? So far i only saw people putting it next to the exe and call it a day, so i'm interested to hear what's different hear to cause this requirement
I expected to copy the DLL to system path to share it with other apps. But maybe ok, I can have in in my app dir and they can use it from there