Textractor_test/deploy.ps1

30 lines
721 B
PowerShell
Raw Normal View History

2019-02-03 05:54:29 +08:00
param([string]$arch = "86", [string]$folder = "Textractor$($arch)")
2019-01-12 05:20:57 +08:00
Set-Location $PSScriptRoot;
2019-02-03 05:54:29 +08:00
$targets = @(
"Textractor.exe",
"TextractorCLI.exe",
2019-03-13 23:54:19 +08:00
"texthook.dll",
2019-02-03 05:54:29 +08:00
"Qt5Core.dll",
"Qt5Gui.dll",
"Qt5Widgets.dll",
"LoaderDll.dll",
"LocaleEmulator.dll",
"Bing Translate.dll",
"Copy to Clipboard.dll",
"Extra Newlines.dll",
"Extra Window.dll",
"Google Translate.dll",
2019-02-13 08:54:15 +08:00
"Lua.dll",
2019-02-03 05:54:29 +08:00
"Regex Filter.dll",
"Remove Repetition.dll",
"Replacer.dll",
"Thread Linker.dll",
"platforms",
"styles"
) | ForEach-Object { "builds/RelWithDebInfo_x$($arch)/$($_)" };
mkdir -Force -Verbose $folder;
Remove-Item -Force -Recurse -Verbose "$($folder)/*";
Copy-Item -Force -Recurse -Verbose -Destination $folder -Path $targets;