I am trying to build the SKIA library with Linux:
https://code.google.com/p/skia/
I have successfully run ./gyp_skia
followed by the make
command.
You often run make install
after make
. However, the SKIA library does not seem to have a make install
option. I'm wondering how to perform the install?
I just started exploring SKIA this week (on OSX), so I understand the learning curve.
The tools build static libraries, not shared libraries, thus it is not something that is "installed", at least not to end user machines. The provided tools build the libraries (.a) not (.so). The tool also build the unit tests and "SampleApp"
I found the following link helpful as well:
Want to learn graphics using Skia on Ubuntu
Good luck