first commit to transcode branch for supporting both nosteam celt and steam opus

This commit is contained in:
2026-05-31 00:13:47 +01:00
parent e6fb78cdf9
commit 2184fd917a
27 changed files with 1634 additions and 15 deletions
+4 -2
View File
@@ -36,10 +36,12 @@ for sdk_name in SM.sdks:
binary.compiler.cxxincludes += [
os.path.join(SM.sm_root, 'public', 'extensions'),
os.path.join(builder.sourcePath, 'opus')
os.path.join(builder.sourcePath, 'opus'),
os.path.join(builder.sourcePath, 'celt')
]
binary.compiler.linkflags += [
os.path.join(builder.sourcePath, 'opus', 'libopus.a')
os.path.join(builder.sourcePath, 'opus', 'libopus.a'),
os.path.join(builder.sourcePath, 'celt', 'libcelt0_patched.a')
]
SM.extensions += builder.Add(project)