Skip to content
Snippets Groups Projects
Commit b349bcf2 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

Merge fix for copying Linux Vivox files

parents fd478424 93fe2212
No related branches found
No related tags found
No related merge requests found
......@@ -233,11 +233,11 @@ elseif(LINUX)
set(vivox_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}")
set(vivox_files
libsndfile.dylib
libortp.dylib
libvivoxoal.dylib
libvivoxplatform.dylib
libvivoxsdk.dylib
libsndfile.so.1
libortp.so
libvivoxoal.so.1
libvivoxplatform.so
libvivoxsdk.so
SLVoice
# ca-bundle.crt #No cert for linux. It is actually still 3.2SDK.
)
......
......@@ -1127,11 +1127,11 @@ def construct(self):
self.path("SLVoice")
self.end_prefix()
if self.prefix(src="../packages/lib/release", dst="lib"):
self.path("libortp.dylib")
self.path("libsndfile.dylib")
self.path("libortp.so")
self.path("libsndfile.so.1")
#self.path("libvivoxoal.so.1") # no - we'll re-use the viewer's own OpenAL lib
self.path("libvivoxsdk.dylib")
self.path("libvivoxplatform.dylib")
self.path("libvivoxsdk.so")
self.path("libvivoxplatform.so")
self.end_prefix("lib")
# plugin runtime
......
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