Skip to content

Commit

Permalink
Appveyor: use pre-installed Qt and upgrade Boost to 1.66
Browse files Browse the repository at this point in the history
  • Loading branch information
lgritz committed Mar 31, 2019
1 parent f92c354 commit 2de1724
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ install:

# Boost
# 1.63 is already installed on appveyor, just use it
- set BOOST_ROOT=C:\Libraries\boost_1_63_0
- set BOOST_ROOT=C:\Libraries\boost_1_66_0
- set CMAKE_PREFIX_PATH=%CMAKE_PREFIX_PATH%;%BOOST_ROOT%

# Install a bunch of vcpkg dependencies. We rely on the run-to-run caching
Expand Down Expand Up @@ -71,15 +71,19 @@ install:
- vcpkg install ragel:x64-windows
- vcpkg install sqlite3:x64-windows

# Qt
- set CMAKE_PREFIX_PATH=%CMAKE_PREFIX_PATH%;C:\Qt\5.12


# Expensive optional deps only build if there's plenty of time left.
# If we run out the clock, the cache won't be saved.
- ps: |
$OIIO_BUILD_NOW=Get-Date
if (($OIIO_BUILD_NOW-$OIIO_INSTALL_BEGIN).TotalMinutes -gt 15) {
Add-AppveyorMessage -Message "OIIO low on time, skippping dependency qt5-base"
} else {
vcpkg install qt5-base:x64-windows
}
# - ps: |
# $OIIO_BUILD_NOW=Get-Date
# if (($OIIO_BUILD_NOW-$OIIO_INSTALL_BEGIN).TotalMinutes -gt 15) {
# Add-AppveyorMessage -Message "OIIO low on time, skippping dependency qt5-base"
# } else {
# vcpkg install qt5-base:x64-windows
# }

# Wish list:
# OpenCV
Expand Down

0 comments on commit 2de1724

Please sign in to comment.