Building a dll with .lib files
Posted
by
Manish Shukla
on Stack Overflow
See other posts from Stack Overflow
or by Manish Shukla
Published on 2012-09-13T09:35:44Z
Indexed on
2012/09/13
9:38 UTC
Read the original article
Hit count: 249
I have a C++ project which is build via bjam. With 'install' rule in Jamroot i am able to create statically linked libraries (.lib files) for my project. My question is, how i can build a load-time DLL (or run-time DLL is also fine) with these .lib files?
More Info: I am building my project with bjam in windows using msvc. When i tried compiling my project under visual C++ 2008, it complied and linked just fine but when i used bjam with msvc for compilation, it started giving linking errors and showing dependency from other project folders. Why was this behavior via bjam but not shown in vc++ UI.
© Stack Overflow or respective owner