summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/fltk/fltk-native.bb
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@googlemail.com>2017-02-28 02:09:42 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2017-04-18 14:21:42 +0200
commit2c78fa9134074c8bdb3e34c7ad41e2832354bb8c (patch)
treee09de165819e088840cb6cc2ae2c8b682d68ed97 /meta-oe/recipes-support/fltk/fltk-native.bb
parentb6e7cc35d4a6becbbf3bef4afed70a5660992d1f (diff)
downloadmeta-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.bb16
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 @@
1require ${BPN}.inc
2
3DEPENDS = "zlib-native jpeg-native libpng-native libxext-native libxft-native"
4
5inherit native
6
7EXTRA_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"