diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-08-14 08:03:50 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-08-14 09:35:12 -0700 |
commit | af282a6061d77d5ac830f20baf5db6dad152dbdd (patch) | |
tree | 76dcbfdc783107b247ff90dce935e850c204d675 /scripts | |
parent | 24718adfc3c2d7caaddd307289ba69fa706315c9 (diff) | |
download | subsurface-af282a6061d77d5ac830f20baf5db6dad152dbdd.tar.gz |
Don't build kirigami in the source tree
Instead build it in its own build tree, where it belongs.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.sh | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 635f1b155..989ddbd9a 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -232,13 +232,10 @@ for (( i=0 ; i < ${#BUILDS[@]} ; i++ )) ; do if [ "$SUBSURFACE_EXECUTABLE" = "MobileExecutable" ] ; then cd $SRC/subsurface bash ./scripts/mobilecomponents.sh - - cd $SRC/subsurface/mobile-widgets/qml/kirigami/ - mkdir -p build - cd build - cmake .. -DSTATIC_LIBRARY=ON + mkdir -p $SRC/kirigami-build + cd $SRC/kirigami-build + cmake $SRC/subsurface/mobile-widgets/qml/kirigami/ -DSTATIC_LIBRARY=ON make -j4 - make install fi mkdir -p $SRC/subsurface/$BUILDDIR |