Skip to content

Commit

Permalink
Don't alter build directory names in UWP example.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Dec 5, 2024
1 parent 21e6813 commit c85b20a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/uwp/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function config {

ForEach ($arch in $arch_list) {
echo "Config Arch = [$arch]"
New-Item -ItemType Directory -Force -Path $arch.ToLower()
New-Item -ItemType Directory -Force -Path $arch
cd $arch
echo "${td_root}"
$fixed_arch = $arch
Expand Down Expand Up @@ -133,8 +133,8 @@ function export-nupkg {
New-Item -ItemType Directory -Force -Path nupkg/lib/uap10.0

ForEach ($config in $config_list) {
cp ${fixed_arch}/${config}/* -include "SSLEAY*","LIBEAY*","libcrypto*","libssl*","zlib*","Telegram.Td.pdb","Telegram.Td.pri","Telegram.Td.dll" nupkg/runtimes/win10-${fixed_arch}/native
cp ${fixed_arch}/${config}/* -include "Telegram.Td.winmd","Telegram.Td.xml" nupkg/lib/uap10.0
cp ${arch}/${config}/* -include "SSLEAY*","LIBEAY*","libcrypto*","libssl*","zlib*","Telegram.Td.pdb","Telegram.Td.pri","Telegram.Td.dll" nupkg/runtimes/win10-${fixed_arch}/native
cp ${arch}/${config}/* -include "Telegram.Td.winmd","Telegram.Td.xml" nupkg/lib/uap10.0
}
}

Expand Down

0 comments on commit c85b20a

Please sign in to comment.