skia2/cmake
mtklein e0f06a4752 Example CMake build for Skia.
This works only on Mac, probably only on 64-bit,
and doesn't support SkCodec.

BUG=skia:4269

Review URL: https://codereview.chromium.org/1319543003
2015-08-28 11:51:07 -07:00
..
.gitignore Example CMake build for Skia. 2015-08-28 11:51:07 -07:00
CMakeLists.txt Example CMake build for Skia. 2015-08-28 11:51:07 -07:00
example.cpp Example CMake build for Skia. 2015-08-28 11:51:07 -07:00
README.md Example CMake build for Skia. 2015-08-28 11:51:07 -07:00

CMake build for Skia

This directory contains experiemental CMake build files for Skia. They are primarily targeted at building Skia as it would be shipped, not at day-to-day Skia development.

Quickstart

$ cd skia/cmake
$ cmake . -G Ninja     # Other CMake generators should work fine.
$ ninja
$ ls -l libskia.* example
$ ./example
$ open example.png

If that works, you should see "Hello World!" with a green-to-purple gradient.

Currently supported platforms

(None. This is still super experimental.)

Currently maybe-kinda-working platforms

  • x86-64 Mac OS X built with Clang (i.e. mtklein's laptop).

Caveats

  • SkCodec, Skia's new image decoder library, does not yet build.