VC Self-contained static libraries

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?
 
C

Chris Saunders

If your building using static libs you don't need to include either in your
delivery.

Regards
Chris Saunders
 
B

Ben Voigt [C++ MVP]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top