I have built two static libraries, lets call them staLib1
& staLib2
.
staLib2
is dependent on staLib1
for building.
Now, I want to know whether it is possible to write a build script in staLib2
project to make both the libraries(.a files) into one library(.a).
I know there is:-
- Creating a dependency project sample - Problem is it generates two
.a
files. - Using
libTool
script after the.a
files are generated. - Not a build script.
Is there a build script that can do this?
Any help will be appreciated.