DRTVWR-489-emoji: Update the machinery that copies over the ICU4C DLLs into the right place in Windows builds
parent
64e84924d4
commit
f9fbd0333a
|
|
@ -61,6 +61,15 @@ if(WINDOWS)
|
|||
uriparser.dll
|
||||
)
|
||||
|
||||
# ICU4C (same filenames for 32 and 64 bit builds)
|
||||
set(release_files ${release_files} icudt48.dll)
|
||||
set(release_files ${release_files} icuin48.dll)
|
||||
set(release_files ${release_files} icuio48.dll)
|
||||
set(release_files ${release_files} icule48.dll)
|
||||
set(release_files ${release_files} iculx48.dll)
|
||||
set(release_files ${release_files} icutu48.dll)
|
||||
set(release_files ${release_files} icuuc48.dll)
|
||||
|
||||
# OpenSSL
|
||||
if(ADDRESS_SIZE EQUAL 64)
|
||||
set(release_files ${release_files} libcrypto-1_1-x64.dll)
|
||||
|
|
|
|||
|
|
@ -517,6 +517,16 @@ class WindowsManifest(ViewerManifest):
|
|||
self.path("OpenAL32.dll")
|
||||
self.path("alut.dll")
|
||||
|
||||
# For ICU4C
|
||||
self.path("")
|
||||
self.path("icudt48.dll")
|
||||
self.path("icuin48.dll")
|
||||
self.path("icuio48.dll")
|
||||
self.path("icule48.dll")
|
||||
self.path("iculx48.dll")
|
||||
self.path("icutu48.dll")
|
||||
self.path("icuuc48.dll")
|
||||
|
||||
# For textures
|
||||
self.path("openjpeg.dll")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue