sm-ext-Voice/AMBuilder

27 lines
603 B
Plaintext
Raw Normal View History

2017-08-02 22:50:33 +02:00
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
import os
if not "SM" in globals():
SM = Extension
projectName = 'Voice'
project = SM.HL2Project(builder, projectName + '.ext')
project.sources += [
'extension.cpp',
'ringbuffer.cpp',
'../../public/smsdk_ext.cpp'
]
for sdk_name in SM.sdks:
sdk = SM.sdks[sdk_name]
binary = SM.HL2Config(project, projectName + '.ext', sdk)
binary.compiler.cxxincludes += [
2017-08-03 06:52:19 +02:00
os.path.join(builder.sourcePath, 'celt')
2017-08-02 22:50:33 +02:00
]
binary.compiler.linkflags += [
2017-08-03 06:52:19 +02:00
os.path.join(builder.sourcePath, 'celt', 'libcelt0.a')
2017-08-02 22:50:33 +02:00
]
SM.extensions += builder.Add(project)