VC Self-contained static libraries

  • Thread starter Thread starter sealo
  • Start date Start date
S

sealo

Hello, dear all,

I have a static library project A.lib. And this library also use the
other library B.lib.
The IDE is VS2005. I want to know, when A.lib was build out, will it
also contain the B.lib code automatically? Or, I have to deliver both
A.lib and B.lib?

Is there any configuration to set?
 
If your building using static libs you don't need to include either in your
delivery.

Regards
Chris Saunders
 
sealo said:
Hello, dear all,

I have a static library project A.lib. And this library also use the
other library B.lib.
The IDE is VS2005. I want to know, when A.lib was build out, will it
also contain the B.lib code automatically? Or, I have to deliver both
A.lib and B.lib?

Is there any configuration to set?

You can use the LIB.EXE tool to make a single library containing both.
 
Back
Top