1DESCRIPTION = "Ceres Solver is an open source C++ library for modeling and solving large, complicated optimization problems." 2AUTHOR = "Sameer Agarwal and Keir Mierle and Others" 3HOMEPAGE = "http://ceres-solver.org/" 4LICENSE = "BSD-3-Clause" 5LIC_FILES_CHKSUM = "file://LICENSE;md5=bb761279816b72be19d7ce646e4e2a14" 6 7DEPENDS = "libeigen glog" 8 9SRC_URI = "git://github.com/ceres-solver/ceres-solver.git;branch=master;protocol=https" 10SRCREV = "f68321e7de8929fbcdb95dd42877531e64f72f66" 11 12S = "${WORKDIR}/git" 13 14inherit cmake 15 16do_configure:prepend() { 17 # otherwise https://github.com/ceres-solver/ceres-solver/blob/0b748597889f460764f6c980a00c6f502caa3875/cmake/AddGerritCommitHook.cmake#L68 18 # will try to fetch https://ceres-solver-review.googlesource.com/tools/hooks/commit-msg durind do_configure 19 # which sometimes gets stuck (as there is no TIMEOUT set in DOWNLOAD) 20 # and we really don't need Gerrit's Change-Id tags when just building this 21 touch ${S}/.git/hooks/commit-msg 22} 23 24# We don't want path to eigen3 in ceres-solver RSS to be 25# used by components which use CeresConfig.cmake from their 26# own RSS 27# ceres-solver/1.14-r0/packages-split/ceres-solver-dev/usr/lib/cmake/Ceres/CeresConfig.cmake: set(Eigen3_DIR ceres-solver/1.14-r0/recipe-sysroot/usr/share/eigen3/cmake) 28# ceres-solver/1.14-r0/packages-split/ceres-solver-dev/usr/lib/cmake/Ceres/CeresConfig.cmake: list(APPEND EIGEN_INCLUDE_DIR_HINTS ceres-solver/1.14-r0/recipe-sysroot/usr/include/eigen3) 29# ceres-solver/1.14-r0/packages-split/ceres-solver-dev/usr/lib/cmake/Ceres/CeresConfig.cmake: set(glog_DIR ceres-solver/1.14-r0/recipe-sysroot/usr/lib/cmake/glog) 30SSTATE_SCAN_FILES += "*.cmake" 31 32PACKAGECONFIG ??= "" 33 34# suitesparse* recipes will be in meta-ros layer 35PACKAGECONFIG[suitesparse] = "-DSUITESPARSE=ON,-DSUITESPARSE=OFF,suitesparse-config suitesparse-amd suitesparse-camd suitesparse-colamd suitesparse-ccolamd suitesparse-cholmod suitesparse-metis suitesparse-spqr" 36PACKAGECONFIG[cxsparse] = "-DCXSPARSE=ON,-DCXSPARSE=OFF,suitesparse-cxsparse" 37PACKAGECONFIG[lapack] = "-DLAPACK=ON,-DLAPACK=OFF,lapack" 38 39# Only a static library and headers are created 40RDEPENDS:${PN}-dev = "" 41RRECOMMENDS:${PN}-dev = "${PN}-staticdev" 42RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" 43