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.
|
|
|||||||||
|
|
|
You have a couple of options:
|
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
