I need to be able to:
- Customize the location of the output folder for the build (Direct the build to a specific folder)
- Create a build with the DLLs folder and its associated DLLs
- Create an installation that has an identical file structure to the one created by the .exe installer.
When I build from code in Windows using the following steps:
- Run 'PCbuild/build.bat'
- Check PCBuild and amd64 folders
I get a result like this: no DLL folder, cannot customize output folder, different file structure from the one created by the .exe installer [PCbuild_file.png, amd64_file.png, which are the images that show the folders PCBuild and amd64]
But when I use the Windows .exe installer, my result looks like this instead: has dll folder, can select output folder, and obviously different file structure from the one created by building from code [Normal_exe_build.png, which is the image that shows the Python310 folder]
How do I build from code such that I get exactly the same result as in the Windows installer? And if that is not possible, what tools do I need to use on the installation built from code to package it in exactly the same way that the build made by the Windows .exe installer is packaged?
