diff options
author | Ivan Komissarov <abbapoh@gmail.com> | 2020-12-03 20:21:58 +0100 |
---|---|---|
committer | Ivan Komissarov <ABBAPOH@gmail.com> | 2020-12-07 11:14:18 +0000 |
commit | 4d5ab1c8d95cc107b2cb1603e9e3dc27f1e7f8aa (patch) | |
tree | abd86937aecbaae8864af86f62ba4e7432f02a06 /scripts/build-qbs-with-cmake.sh | |
parent | 80cb55a1fb4d8d762003f1fc766365196cc6a450 (diff) | |
download | qbs-4d5ab1c8d95cc107b2cb1603e9e3dc27f1e7f8aa.tar.gz |
cmake: install files when using build-qbs-with-cmake.sh
This allows to test if install() commands are correct
Change-Id: I68085a118b03e6c4095b636f219a60abcc237ee1
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'scripts/build-qbs-with-cmake.sh')
-rwxr-xr-x | scripts/build-qbs-with-cmake.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/build-qbs-with-cmake.sh b/scripts/build-qbs-with-cmake.sh index 1c5600e3d..c4c954fd6 100755 --- a/scripts/build-qbs-with-cmake.sh +++ b/scripts/build-qbs-with-cmake.sh @@ -66,7 +66,8 @@ pushd build # Build all default products of Qbs # cmake -GNinja -DQt5_DIR=${QT_DIR}/lib/cmake/Qt5/ ${BUILD_OPTIONS} .. -ninja +cmake --build . +cmake --install . --prefix "install-root" # # Set up profiles for the freshly built Qbs if not |