oh me anon
8-/
Thanks, but it seems that I've messed up describing my problem, may be because of my poor english.... Sorry for that...
First of all, I use Borland C.
After compiling my source files I am getting two *.DLL's and one *.EXE. And then my project's directory tree looks like this:
c:\Project\DLL1\foo1.c
c:\Project\DLL2\foo2.c
c:\Project\main.c
c:\Project\foo1.dll
c:\Project\foo2.dll
c:\Project\main.exe
So, when I start to debug, the debugger searches for my source files only in c:\Project\ directory (and does not find it), while I need it to search them in c:\Project\DLL1\, c:\Project\DLL2\ and c:\Project\ directories, because they are really there...
Its inability to find them results in the follwing look of the "source files" panel:
Source files
Module Source Source path
DLL1 (Absent) C:\Project\foo1.c
DLL2 (Absent) C:\Project\foo2.c
EXE MAIN.C C:\Project\main.c
while must be:
Module Source Source path
DLL1 FOO1.C C:\Project\DLL1\foo1.c
DLL2 FOO2.C C:\Project\DLL2\foo2.c
EXE MAIN.C C:\Project\main.c
Is this explanation more plain now ?
So, my question remains the same: How to inform debugger where to search for source files of DLL's? Or, otherwise saying, how can I specify several directories of source files?
