From a7616c262ff994ed1a0930736ab5b8a301c1fd48 Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Thu, 10 Aug 2017 15:53:18 +0200 Subject: Add CMake detection to app build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Id2e8d67aa3890f93b89b340f268597f1c4ec6db6 Signed-off-by: Jan-Simon Möller --- jjb/common/include-apps-build-app.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'jjb') diff --git a/jjb/common/include-apps-build-app.sh b/jjb/common/include-apps-build-app.sh index 694dcf7d..babd2907 100644 --- a/jjb/common/include-apps-build-app.sh +++ b/jjb/common/include-apps-build-app.sh @@ -73,6 +73,12 @@ if [[ ! x"yes" = x"$HANDLED" ]] && $(echo "$TARGETPROJECT" | grep -q "apps/"); t conf.d/autobuild/agl/autobuild package DEST=$(pwd)/package/ export DONE=1 fi + if test x"0" = x"$DONE" -a -f CMakeLists.txt; then + cmake . + make + make package || true + export DONE=1 + fi if test x"0" = x"$DONE" -a -f Makefile ; then make make package -- cgit 1.2.3-korg