I am currently running some Python scripts in a Visual Studio C++ application using the Python/C api. The application is using Python that is installed on my system. However, I'd like to distribute the application without requiring the user to install python manually. I was told to use the embeddable Python version. I found and downloaded the Python 3.8.0 Windows x86-64 embeddable zip file from here. I extracted the contents and now have no idea how to continue. I clearly see the python38.dll (I am assuming this needs to the new dll that the application depends on), but how do I pack it into the output .exe file?
I appreciate the help in advance, and let me know if there is any information I am missing!