2022-08-02 20:24:01 +00:00
|
|
|
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 "."
|
2022-09-05 09:12:47 +00:00
|
|
|
Copy-Item "..\..\HidHideSetup.exe" -Destination "."
|
|
|
|
Copy-Item "..\..\ViGEmBusSetup_x64.exe" -Destination "."
|
2022-08-02 20:24:01 +00:00
|
|
|
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"
|
|
|
|
|
|
|
|
7z a GlosSI-snapshot.zip *
|