mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 21:15:35 +00:00
ICU-20002 Modify Windows 'distrelease.ps1' for 32-bit (x86) builds
This commit is contained in:
parent
6277c9c4d7
commit
d5ccdc9d2f
1 changed files with 3 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
|||
# Date: 2017-04-14
|
||||
#-------------------------
|
||||
#
|
||||
# This builds a zipfile containing the *64 bit* Windows binaries.
|
||||
# This builds a zipfile containing the 64-bit (x64) and/or 32-bit (x86) Windows binaries.
|
||||
# (Note: The zipfile does not include the UWP binaries.)
|
||||
#
|
||||
# Usage: (after building ICU using MSVC)
|
||||
|
@ -35,8 +35,10 @@ Get-ChildItem -Path $source -ErrorAction SilentlyContinue | Remove-Item -Recurse
|
|||
New-Item -Path $source -ItemType "directory" -ErrorAction SilentlyContinue
|
||||
|
||||
# copy required stuff
|
||||
Copy-Item -Path "$icuDir\lib" -Destination $source -Recurse
|
||||
Copy-Item -Path "$icuDir\lib64" -Destination $source -Recurse
|
||||
Copy-Item -Path "$icuDir\include" -Destination $source -Recurse
|
||||
Copy-Item -Path "$icuDir\bin" -Destination $source -Recurse
|
||||
Copy-Item -Path "$icuDir\bin64" -Destination $source -Recurse
|
||||
Copy-Item -Path "$icuDir\APIChangeReport.html" -Destination $source -Recurse
|
||||
Copy-Item -Path "$icuDir\icu4c.css" -Destination $source -Recurse
|
||||
|
|
Loading…
Add table
Reference in a new issue