Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Debug & DLLs

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
Hi,

I've got a big organisation trouble about working with DLLs.

I have :

- A VC++ project (A) for a DLL.
- A separate project (B) using the DLL of the project(A).

The 2 projects are located at different places.

My question is :

Is it possible to adjust settings of the project B in order to use the DLL located in the /Debug or /Release directory of the project A (and then, take in account automatically modifications of the project A)?

Actually, i must copy each .dll & .lib generated by project (A) into directories of the project(B).

Thanks,

 
In the Post_Build of project A (Project Settings menu)
add the copy command that copies the dll and it's
.lib file to Projetc B's directory.
Another alternative is to set the serach path for
project B so that it points to A/Debug or A/Release, too. ======
SeekerOfKnowledge
======
 
What do you mean by search path ???

Do you mean the environment variable path ?
or
Do you mean that there is some parameters in the project setting tab that allow to set a specific search path for DLLs ???

Thanks,

BR.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top