i am trying to statically link python35.dll to my win32 API application because i have to make it standalone. I have set up include and libraries paths to $(SolutionDir)\inlcude and $(SolutionDir)\libs, respectively and set up runtime library under C/C++->Code Generation to Multi-threaded(/MT). Also i added python35.lib to Linker->Input->Aditional Dependencies.
Now my .exe is working when i have python35.dll in the same folder as .exe, but i have to have that .dll as a part of .exe, so it can be standalone.
I have read many other question here on stackoverflow and tried everything but i am surely missing something. I would appreciate any help.
Thank you in advance.
EDIT: OK, i have to change a topic here because i have done this and found solution and it seems that i have forgotten real problem.
I there some way for me to create wrap python into my winapi program so users of it don't have to install Python to have it working?
Note: Sorry for this kind of questions I don't have much experience in neither Python nor C++. I've also updated title according to new question.