Let's say I have a visual studio project using some external code in A.lib and A.dll.
On Debug and Release configurations, I need to specify different link paths for A.lib such that both are linking the right library.
But how about DLLs? How do I specify them to take higher priority than the PATH system environment variable ?
The point is that I have a python script which uses the PATH env variable to get the release version of the DLL. I just need a way to override this and point to a different path of the DLL in visual studio and DEbug configuration.