Hi I have following project hirarcy:
-Top
------lib1
----------Jamfile
------lib2
----------Jamfile
------Jamroot
Both the libs:lib1 and lib2 are static libs(.a) and their Jamfile consist of following command:
lib $(library) : [ glob *.cpp ] : <link>static ;
Now at Jamroot level, I have to create a single shared library(.so) by combining all above two static libs:lib1.a and lib2.a should be combined and form a libmain.so.
Can you tell me how can I write required bjam statement to achieve above purpose in my Jamroot.jam file?
Have you tried something like this?