VS 2012 Lib and DLL File Exported in Different Directories

closed account (N36fSL3A)
Okay, so I have a program where I want to export the .lib file in a "Lib" folder, and the .dll file in the "bin" folder. How can I choose where the lib file and .dll file go?
closed account (N36fSL3A)
bump
Use post build events, Project > properties > post-build-events.
Something like this might work
xcopy /y "$(OutDir)*.dll" "$(SolutionDir)bin\"
xcopy /y "$(OutDir)*.lib" "$(SolutionDir)lib\"
closed account (N36fSL3A)
Thanks!
Topic archived. No new replies allowed.