I have a cpp which depends on couple of headers in the same folder. I need to compile this cpp to a dll. How do I do it in visual studio 2010 expresS?
I found few articles on web for visual studio 2008 but I could not use it in 2010. Any pointers would be highly appreciated. Btw, I am a java programmer. CPP is all new to me, I am compiling some one else’s cpp to dll.
Thanks,
Abi
Right-click on your project in the Solution Explorer, and select
Properties.... UnderConfiguration Properties -> Generalthere’s an option calledConfiguration Type. If you change it toDynamic Library (.dll), your project will generate a DLL when it is built.