Textractor/deploy.ps1

37 lines
755 B
PowerShell
Raw Permalink 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-03 23:26:53 -04:00
"Copy to Clipboard.dll",
"Extra Newlines.dll",
2018-11-03 23:26:53 -04:00
"Google Translate.dll",
2018-11-03 23:58:52 -04:00
"Regex Filter.dll",
2018-11-03 23:26:53 -04:00
"Remove Repetition.dll",
2018-11-05 16:50:17 -05:00
"Thread Linker.dll",
"Extensions.txt"
)
2018-10-19 15:55:48 -04: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-03 23:26:53 -04:00
"Copy to Clipboard.dll",
"Extra Newlines.dll",
2018-11-03 23:26:53 -04:00
"Google Translate.dll",
2018-11-03 23:58:52 -04:00
"Regex Filter.dll",
2018-11-03 23:26:53 -04:00
"Remove Repetition.dll",
2018-11-05 16:50:17 -05:00
"Thread Linker.dll",
"Extensions.txt"
)