The shared library is causing much trouble for me, and disk space is far less expensive than the trouble itself.
How can I convert all shared libs(.dll
) to static libs(.lib
) and make my programe use them instead of using shared libs?
Note some .dll
s are not directly refered to by my programe,e.g. my programe requires libpng
,and libpng
requires zlib.dll
.
Is there a solution that wraps up all these cases?