blob: f21c4d65459eeb5b36cca34894419949fb472c28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
DEPENDS += " cmake-native "
# We want the staging and installing functions from autotools
inherit autotools_stage
# Use in-tree builds by default but allow this to be changed
# since some packages do not support them (e.g. llvm 2.5).
OECMAKE_SOURCEPATH ?= "."
# If declaring this, make sure you also set EXTRA_OEMAKE to
# "-C ${OECMAKE_BUILDPATH}". So it will run the right makefiles.
OECMAKE_BUILDPATH ?= ""
cmake_do_configure() {
if [ ${OECMAKE_BUILDPATH} ]
then
mkdir ${OECMAKE_BUILDPATH}
cd ${OECMAKE_BUILDPATH}
fi
cmake ${OECMAKE_SOURCEPATH} \
-DCMAKE_INSTALL_PREFIX:PATH=${prefix} \
-DCMAKE_FIND_ROOT_PATH:PATH=${STAGING_DIR_HOST} \
${EXTRA_OECMAKE} \
-Wno-dev
}
cmake_do_compile() {
if [ ${OECMAKE_BUILDPATH} ]
then
cd ${OECMAKE_BUILDPATH}
fi
base_do_compile
}
cmake_do_install() {
if [ ${OECMAKE_BUILDPATH} ];
then
cd ${OECMAKE_BUILDPATH}
fi
autotools_do_install
}
EXPORT_FUNCTIONS do_configure do_compile do_install
|