I built my project and in configuration folders (ie. release) I have .exe files. I copied (manually) all .dll there but it looks messy. Now I want to move that dlls to subfolder, but in that case app can't find dlls. Is there any way to set directory in Visual Studio 2010 to look for dll in subfolder? Thanks
Asked
Active
Viewed 740 times
2 Answers
0
You can try Using runtime dynamic linking

jackson.ke
- 29
- 5
-
I already know this solution. I search something to set in Visual Studio (if there is such possibility) not using dynamic linking. – never_ever Jun 01 '16 at 03:21
0
No, there's no such option in Visual Studio, because it's not Visual Studio that loads these DLL's. C++ is a compiled language; Visual Studio produces executables and DLL's for Windows to run. And Windows doesn't look at Visual Studio settings when running executables - your typical user probably doesn't even have Visual Studio installed!
As for Windows checking subdirectories - it's possible with manifests but not easy.