Change Name of Outputted DLL

Posted by Changeling on Stack Overflow See other posts from Stack Overflow or by Changeling
Published on 2010-04-08T20:09:54Z Indexed on 2010/04/08 20:13 UTC
Read the original article Hit count: 357

Filed under:
|
|

If my project name is ABC and the DLL currently outputs as ABC.DLL, how can I make my DLL be outputted as say CBA.DLL and so that when the .LIB is compiled linked against, it is not looking for ABC.DLL, but CBA.DLL. I tried changing the name under Linker > General > Output File but when I linked to the .lib in my other application, it was still looking for ABC.DLL and CBA.DLL.

© Stack Overflow or respective owner

Related posts about c++

Related posts about visual-studio-2005