Skip to content
Snippets Groups Projects
Commit 96d28ad5 authored by Oz Linden's avatar Oz Linden
Browse files

more places where vivox names must be conditional on address size

parent 5bfc1e7e
No related branches found
No related tags found
No related merge requests found
...@@ -20,9 +20,18 @@ if(WINDOWS) ...@@ -20,9 +20,18 @@ if(WINDOWS)
set(vivox_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}") set(vivox_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}")
set(vivox_files set(vivox_files
SLVoice.exe SLVoice.exe
vivoxsdk.dll
ortp.dll
) )
if (ADDRESS_SIZE EQUAL 64)
list(APPEND vivox_files
vivoxsdk_64.dll
ortp_64.dll
)
else (ADDRESS_SIZE EQUAL 64)
list(APPEND vivox_files
vivoxsdk.dll
ortp.dll
)
endif (ADDRESS_SIZE EQUAL 64)
#******************************* #*******************************
# Misc shared libs # Misc shared libs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment