Short version:
If running a program from VS2008 in Release mode, I want it to use
pathA\externaldll.dll
.
If running a program from VS2008 in Debug mode, I want it to use
pathB\externaldll.dll
Long version: I have a programm that is linked against external dll-files (VTK). I have built the external application myself in both Debug and Release mode. The external dll-files are located like this:
<some path>\Debug\externalDll.dll
<some path>\Release\externalDll.dll
(so they are called the same, but have different folders).
I want to step into the external code for Debug Builds, but I want the Release Builds to use the Release DLLs for testing the execution time (I process big datasets).
Linking to the according dlls is easy, as I have project settings for that. But when executing, Visual Studio takes the first dll it finds within the PATH environment variable.
Cumbersome solution idea: Having the PATH variable like: PATH=;%CURRENTDLLPATH%; and setting CURRENTDLLPATH in a post-build-step. Is there no solution built-in into VS2008?