When I created my DLL project in Visual Studio 2008, I was able to specify another folder to output the DLL to, and where to output it's companion LIB file when the project was built. By default, the LIB file would be placed in the same directory as the DLL. There was no such option in Visual Studio 2010 and the LIB file was placed in my output directory ("make_msvc10/_output/Galaxy.LIB") whereas my DLL was placed properly in the intended target directory ("lib/win32/Galaxy.DLL"). It would be nice to be able to set a specific seperate path for the output LIB file, but at the least it should be placed in the same place as the DLL when no alternate path is specified (i.e. should use $(TargetPath)$(ProjectName).LIB or something along those lines.Right now I have to add a post-build event ("copy .\_output\*.lib ..\lib\win32\*.lib")
Product Language
Version
Operating System
Operating System Language
Steps to Reproduce
Actual Results
Expected Results
Please wait...