diff options
Diffstat (limited to 'meta/recipes-devtools/cmake')
-rw-r--r-- | meta/recipes-devtools/cmake/cmake-native_3.11.4.bb | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/meta/recipes-devtools/cmake/cmake-native_3.11.4.bb b/meta/recipes-devtools/cmake/cmake-native_3.11.4.bb index 9f371e9b0c..f55c519c8c 100644 --- a/meta/recipes-devtools/cmake/cmake-native_3.11.4.bb +++ b/meta/recipes-devtools/cmake/cmake-native_3.11.4.bb | |||
@@ -3,7 +3,12 @@ inherit native | |||
3 | 3 | ||
4 | DEPENDS += "bzip2-replacement-native expat-native xz-native zlib-native curl-native" | 4 | DEPENDS += "bzip2-replacement-native expat-native xz-native zlib-native curl-native" |
5 | 5 | ||
6 | SRC_URI += "file://0004-Disable-use-of-ext2fs-ext2_fs.h-by-cmake-s-internal-.patch" | 6 | SRC_URI += "file://0004-Disable-use-of-ext2fs-ext2_fs.h-by-cmake-s-internal-.patch \ |
7 | file://OEToolchainConfig.cmake \ | ||
8 | file://environment.d-cmake.sh \ | ||
9 | file://0001-CMakeDetermineSystem-use-oe-environment-vars-to-load.patch \ | ||
10 | " | ||
11 | |||
7 | 12 | ||
8 | B = "${WORKDIR}/build" | 13 | B = "${WORKDIR}/build" |
9 | do_configure[cleandirs] = "${B}" | 14 | do_configure[cleandirs] = "${B}" |
@@ -31,6 +36,15 @@ do_compile() { | |||
31 | 36 | ||
32 | do_install() { | 37 | do_install() { |
33 | oe_runmake 'DESTDIR=${D}' install | 38 | oe_runmake 'DESTDIR=${D}' install |
39 | |||
40 | # The following codes are here because eSDK needs to provide compatibilty | ||
41 | # for SDK. That is, eSDK could also be used like traditional SDK. | ||
42 | mkdir -p ${D}${datadir}/cmake | ||
43 | install -m 644 ${WORKDIR}/OEToolchainConfig.cmake ${D}${datadir}/cmake/ | ||
44 | mkdir -p ${D}${base_prefix}/environment-setup.d | ||
45 | install -m 644 ${WORKDIR}/environment.d-cmake.sh ${D}${base_prefix}/environment-setup.d/cmake.sh | ||
34 | } | 46 | } |
35 | 47 | ||
36 | do_compile[progress] = "percent" | 48 | do_compile[progress] = "percent" |
49 | |||
50 | SYSROOT_DIRS_NATIVE += "${datadir}/cmake ${base_prefix}/environment-setup.d" | ||