Textractor_test/deploy.ps1

33 lines
669 B
PowerShell
Raw Normal View History

cd Builds/RelWithDebInfo/x86;
Compress-Archive -Force -DestinationPath Textractor -Path @(
"Textractor.exe",
"styles",
"platforms",
"Qt5Core.dll",
"Qt5Gui.dll",
"Qt5Widgets.dll",
"vnrhook.dll",
"Bing Translate.dll",
2018-11-04 11:26:53 +08:00
"Copy to Clipboard.dll",
"Extra Newlines.dll",
2018-11-04 11:26:53 +08:00
"Google Translate.dll",
"Remove Repetition.dll",
"Extensions.txt"
)
2018-10-20 03:55:48 +08:00
cd ../x64;
Compress-Archive -Force -DestinationPath Textractor -Path @(
"Textractor.exe",
"styles",
"platforms",
"Qt5Core.dll",
"Qt5Gui.dll",
"Qt5Widgets.dll",
"vnrhook.dll",
"Bing Translate.dll",
2018-11-04 11:26:53 +08:00
"Copy to Clipboard.dll",
"Extra Newlines.dll",
2018-11-04 11:26:53 +08:00
"Google Translate.dll",
"Remove Repetition.dll",
"Extensions.txt"
)