I have created a small library in c++ to use it with python through ctypes. I have no problem compiling a dll, but I would like to get only a dll. In stead, I get dll, exp, iobj, ipdb, lib and pdb files. If I don't have them in the same directory, I get an error with ctypes:
Could not find module 'module_name.dll' (or one of its dependencies)
How can I make it so I only need the dll and not the other files?