Skip to content

Commit b41f06c

Browse files
author
Alexis Lopez Zubieta
committed
Fix inclusion of libs in non-standard paths
1 parent 967963f commit b41f06c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ addons:
2020
- cmake
2121

2222
script:
23-
- export QT_PREFIX=/opt/qt510/
23+
- export QT_PREFIX=/opt/qt510
24+
2425
- $QT_PREFIX/bin/qt510-env.sh
26+
- export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${QT_PREFIX}/lib"
2527
- export CMAKE_PREFIX_PATH=$QT_PREFIX/lib/cmake
2628
- export QT_SELECT=qt5
2729
- bash -xe build_appimages.sh

build_appimages.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pushd QtQuickControls2Application
3434

3535
# This env variable is used by the qt plugin to search the qml modules in other paths than the default
3636
# Qt qml dir.
37-
export QML_MODULES_PATHS=""
37+
export QML_MODULES_PATHS="${QML_MODULES_PATHS}"
3838

3939
mkdir build
4040
pushd build

0 commit comments

Comments
 (0)