vote up 0 vote down star

How do I set a path for dll's to be searched in Visual Studio for a particular project alone. Now I am setting it in environment path variable, but I would like better control over this.

flag

Do you mean that you're attempting to run something in the debugger, and because the DLLs aren't in PATH, it's not finding them? – Roger Lipscombe Jan 9 at 13:49
Are you talking about the debugger or running the application from the Window's shell? – j0rd4n Jan 9 at 13:53
Also, are you talking about a DLL you wrote or 3rd-party DLLs you are consuming? – j0rd4n Jan 9 at 14:08
I was asking abt running the exe that is created in debug or release folder – yesraaj Jan 9 at 15:13

3 Answers

vote up 2 vote down check

You have a couple of options:

  • You can add the path to the DLLs to the Executables files settings under Tools > Options > Projects and Solutions > VC++ Directories
  • You can add them in your global PATH environment variable
  • You can start Visual Studio using a batch file as I described here and manipulate the path in that one
  • You can copy the DLLs into the executable's directory :-)
link|flag
vote up 1 vote down

Set the PATH variable, like you're doing. If you're running the program from the IDE, you can modify environment variables by adjusting the Debugging options in the project properties.

If the DLLs are named such that you don't need different paths for the different configuration types, you can add the path to the system PATH variable or to Visual Studio's global one in Tools | Options.

link|flag
vote up 1 vote down

If you only need to add one path per configuration (debug/release), you could set the debug command working directory:

Project | Properties | Select Configuration | Configuration Properties | Debugging | Working directory

Repeat for each project configuration.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.