diff options
| author | Andreas Müller <schnitzeltony@googlemail.com> | 2017-02-28 02:09:42 +0100 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-04-18 14:21:42 +0200 |
| commit | 2c78fa9134074c8bdb3e34c7ad41e2832354bb8c (patch) | |
| tree | e09de165819e088840cb6cc2ae2c8b682d68ed97 /meta-oe/recipes-support/fltk/fltk-native.bb | |
| parent | b6e7cc35d4a6becbbf3bef4afed70a5660992d1f (diff) | |
| download | meta-openembedded-2c78fa9134074c8bdb3e34c7ad41e2832354bb8c.tar.gz | |
fltk: rework completely
* Use cmake as build system. Projects also using cmake and depending on fltk
would not find all required components. Note that FindFLTK.cmake is part of
cmake.
* Add a native recipe and split out common - we need fluid (Fast Light User
Interface Designer) as working binary
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Diffstat (limited to 'meta-oe/recipes-support/fltk/fltk-native.bb')
| -rw-r--r-- | meta-oe/recipes-support/fltk/fltk-native.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/fltk/fltk-native.bb b/meta-oe/recipes-support/fltk/fltk-native.bb new file mode 100644 index 0000000000..353987e0fd --- /dev/null +++ b/meta-oe/recipes-support/fltk/fltk-native.bb | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | require ${BPN}.inc | ||
| 2 | |||
| 3 | DEPENDS = "zlib-native jpeg-native libpng-native libxext-native libxft-native" | ||
| 4 | |||
| 5 | inherit native | ||
| 6 | |||
| 7 | EXTRA_OECMAKE += " \ | ||
| 8 | -DOPTION_BUILD_SHARED_LIBS=OFF \ | ||
| 9 | -DOPTION_USE_THREADS=OFF \ | ||
| 10 | -DOPTION_USE_XDBE=OFF \ | ||
| 11 | -DOPTION_USE_XFT=OFF \ | ||
| 12 | -DOPTION_BUILD_EXAMPLES=OFF \ | ||
| 13 | -DOPTION_USE_XINERAMA=OFF \ | ||
| 14 | -DOPTION_USE_XFIXES=OFF \ | ||
| 15 | -DOPTION_USE_XCURSOR=OFF \ | ||
| 16 | " | ||
