mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
11 lines
No EOL
351 B
PowerShell
11 lines
No EOL
351 B
PowerShell
#Copy all files into the Release folder
|
|
cd "$(Split-Path -Parent $MyInvocation.MyCommand.Path)\..\build"
|
|
cp ..\vcpkg\installed\x64-windows\bin\*.dll Release
|
|
cp -r ..\resources Release
|
|
cp -r ..\pipelines Release
|
|
mkdir Release\plugins | Out-Null
|
|
cp plugins\Release\*.dll Release\plugins
|
|
cp ..\satdump_cfg.json Release
|
|
cd Release
|
|
|
|
Write-Output "Done!" |