A question where the generated Windows DLL goes

I’m getting a 32-bit Xojo-built app ready for Windows 10 and I have a simple question.
When I build the app with Xojo 2017R3, a set of required DLLs are generated in a subfolder Libs\ that includes the typical GUI.dll, vcruntime140.dll, …, XojoGUIFramework32.dll, and XML.dll (that I need for the app to work).

Where do these need to be placed in the installed system? I assume that it would be in the \WIndows\System32\ folder? It wouldn’t be as a subfolder Libs\ in the C:\Program Files (x86)\, would it?

Is this referenced anywhere in the documentation?

Thank you.
Ken

Everything you see in the build folder needs to be placed along with the exe, so:

C:\Program Files (x86)\InstallFolder\AppName.exe
C:\Program Files (x86)\InstallFolder\AppName Libs\.
etc

http://developer.xojo.com/userguide/desktop-deployment$Windows

https://blog.xojo.com/2014/06/creating-installers-for-windows-apps/
https://blog.xojo.com/2014/06/12/creating-installers-for-windows-apps/

Thank you Julian