Browse Source

Fixing missing Qt DLL

Jeremy Borgman 4 years ago
parent
commit
20536a291e
1 changed files with 6 additions and 4 deletions
  1. 6 4
      appveyor.yml

+ 6 - 4
appveyor.yml

@@ -12,10 +12,14 @@ build_script:
     mkdir build
 
     cd build
+    
+    set QTDIR=%Qt5_INSTALL_DIR%
+
+    set "VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC"
 
-    echo %PATH%
+    set "OPENSSL_ROOT_DIR=C:\OpenSSL-v111-Win64\bin"
 
-    cmake c:\projects\source -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE:STRING=Release
+    cmake c:\projects\source -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE:STRING=Release -DENABLE_OPENSSL=ON -DRUN_IN_PLACE=OFF
 
     cmake --build . --parallel 2 --config "Release"
  
@@ -23,8 +27,6 @@ build_script:
 
     mkdir artifact
     
-    dir
-
     cp package/*.msi artifact/.
 
     cp src/Release/*.exe artifact/.