CircleCI: support Qt from a PPA on /opt

This commit is contained in:
Hyunjin Song
2019-10-31 15:14:52 +09:00
committed by GitHub
parent 9cb1f8e784
commit 488c4ea603

View File

@@ -122,7 +122,10 @@ jobs:
- *restore_cache
- run:
name: Configure
command: mkdir build && cd build && cmake .. $CMAKE_OPTS -DCMAKE_INSTALL_PREFIX=./install
command: |
source /opt/qt5*/bin/qt5*-env.sh || true
mkdir build && cd build
cmake .. $CMAKE_OPTS -DCMAKE_INSTALL_PREFIX=./install
- run:
name: Build
command: cd build && make