mirror of
https://github.com/Alia5/GlosSI.git
synced 2024-10-30 15:20:38 +00:00
25 lines
1.2 KiB
PowerShell
25 lines
1.2 KiB
PowerShell
powershell.exe .\download_release_deps.ps1
|
|
|
|
cd ./x64/Release/
|
|
|
|
Get-ChildItem -Rec | Where {$_.Extension -match "lib"} | Remove-Item
|
|
$env:Path = "$env:QTDIR\bin;$env:Path"
|
|
|
|
windeployqt.exe --release --qmldir ../../GlosSIConfig/qml ./GlosSIConfig.exe
|
|
|
|
|
|
Copy-Item "..\..\deps\SFML\out\Release\lib\RelWithDebInfo\sfml-graphics-2.dll" -Destination "."
|
|
Copy-Item "..\..\deps\SFML\out\Release\lib\RelWithDebInfo\sfml-system-2.dll" -Destination "."
|
|
Copy-Item "..\..\deps\SFML\out\Release\lib\RelWithDebInfo\sfml-window-2.dll" -Destination "."
|
|
Copy-Item "..\..\GlosSIConfig\GetAUMIDs.ps1" -Destination "."
|
|
Copy-Item "..\..\HidHideSetup.exe" -Destination "."
|
|
Copy-Item "..\..\ViGEmBusSetup_x64.exe" -Destination "."
|
|
Copy-Item "..\..\vc_redist.x64.exe" -Destination "."
|
|
Copy-Item "..\..\LICENSE" -Destination "./LICENSE"
|
|
Copy-Item "..\..\QT_License" -Destination "./QT_License"
|
|
Copy-Item "..\..\THIRD_PARTY_LICENSES.txt" -Destination "./THIRD_PARTY_LICENSES.txt"
|
|
Copy-Item "..\..\steamgrid.exe" -Destination "./steamgrid.exe"
|
|
Copy-Item "C:\Qt\Tools\OpenSSL\Win_x64\bin\libcrypto-1_1-x64.dll" -Destination "./libcrypto-1_1-x64.dll"
|
|
Copy-Item "C:\Qt\Tools\OpenSSL\Win_x64\bin\libssl-1_1-x64.dll" -Destination "./libssl-1_1-x64.dll"
|
|
|
|
7z a GlosSI-snapshot.zip * |