[CI] Use static Qt libraries from static build

This commit is contained in:
Dr. Chat 2018-05-15 17:04:06 -05:00
parent b97a4bbf17
commit d4809bb100
2 changed files with 4 additions and 4 deletions

View File

@ -43,8 +43,8 @@ clone_folder: c:\dev\xenia
# environment variables
environment:
QT_BIN: C:\Qt\5.10.1\msvc2017_64\bin
QT_DIR: C:\Qt\5.10.1-static\msvc2017_64
QT_DIR: C:\Qt\5.10.1\msvc2017_64
QT_LIB: C:\Qt\5.10.1-static\msvc2017_64\lib
my_var2: value2
# build cache to preserve files/folders between builds

View File

@ -44,8 +44,8 @@ project("xenia-app")
qt.enable()
qtmodules{"core", "gui", "widgets"}
qtprefix "Qt5"
if os.getenv("QT_BIN") then
qtbinpath(os.getenv("QT_BIN"))
if os.getenv("QT_LIB") then
qtlibpath(os.getenv("QT_LIB"))
end
configuration {"Debug"}