diff --git a/.github/workflows/build-qv2ray-cmake.yml b/.github/workflows/build-qv2ray-cmake.yml index ed7d6c4..a8bf5c9 100644 --- a/.github/workflows/build-qv2ray-cmake.yml +++ b/.github/workflows/build-qv2ray-cmake.yml @@ -83,7 +83,7 @@ jobs: if: matrix.platform == 'windows-2022' run: | mkdir qtsdk ; cd qtsdk - curl -LSO https://github.com/MatsuriDayo/nekoray_qt_runtime/releases/download/20220503/Qt5.15.7-Windows-x86_64-VS2019-16.11.20-20221103.7z + curl -LSO https://github.com/MatsuriDayo/nekoray_qt_runtime/releases/download/20220503/Qt6.5.0-Windows-x86_64-VS2022-17.5.5-20230507.7z 7z x *.7z rm *.7z mv Qt* Qt @@ -121,7 +121,7 @@ jobs: source libs/env_qtsdk.sh $PWD/qtsdk/Qt mkdir build cd build - cmake -GNinja -DCMAKE_BUILD_TYPE=Release .. + cmake -GNinja -DQT_VERSION_MAJOR=6 -DCMAKE_BUILD_TYPE=Release .. ninja cd .. ./libs/deploy_windows64.sh diff --git a/libs/deploy_windows64.sh b/libs/deploy_windows64.sh index 5706ecd..0561f60 100755 --- a/libs/deploy_windows64.sh +++ b/libs/deploy_windows64.sh @@ -13,6 +13,9 @@ cp $BUILD/nekoray.exe $DEST pushd $DEST windeployqt nekoray.exe --no-compiler-runtime --no-system-d3d-compiler --no-opengl-sw --verbose 2 rm -rf translations +rm -rf libEGL.dll libGLESv2.dll Qt6Pdf.dll +curl -fLSO https://github.com/MatsuriDayo/nekoray_qt_runtime/releases/download/20220503/libcrypto-3-x64.dll +curl -fLSO https://github.com/MatsuriDayo/nekoray_qt_runtime/releases/download/20220503/libssl-3-x64.dll popd #### prepare deployment ####