summaryrefslogtreecommitdiffstats
path: root/GUI/package.ps1
blob: 0346e67c44042acffe6f9653d9ed0b1fa5185522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$install_dir = "TaSTT"

if (Test-Path $install_dir) {
  rm -Recurse $install_dir
}

mkdir $install_dir > $null
mkdir $install_dir/Resources > $null
cp ../Images/logo.png TaSTT/Resources
cp -Recurse ../Python TaSTT/Resources/Python
cp -Recurse ../Scripts TaSTT/Resources/Scripts
cp -Recurse ../Sounds TaSTT/Resources/Sounds
cp GUI/x64/Release/GUI.exe TaSTT/TaSTT.exe