[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 variables
environment: environment:
QT_BIN: C:\Qt\5.10.1\msvc2017_64\bin QT_DIR: C:\Qt\5.10.1\msvc2017_64
QT_DIR: C:\Qt\5.10.1-static\msvc2017_64 QT_LIB: C:\Qt\5.10.1-static\msvc2017_64\lib
my_var2: value2 my_var2: value2
# build cache to preserve files/folders between builds # build cache to preserve files/folders between builds

View File

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