I developed an application that depends on a dll. When I debug my app, the app would complain that "This application has failed to start because xxx.dll was not found."
So what I have to do is to copy the dll into the same directory as my .vcproj.
Is there a way to set the project to look for the dll in (preferably) some relative path or (not preferred) some absolute path?
Similar concept to how we set include and lib path in the project settings.
EDIT: Sorry for all the confusion: I meant when I debug my app (hitting F5) the above error would pop up.