2013-12-30 23:50:56 +01:00
|
|
|
# vim: set sts=2 ts=8 sw=2 tw=99 et ft=python:
|
2009-08-30 09:46:56 +02:00
|
|
|
import os
|
|
|
|
|
2013-12-30 23:50:56 +01:00
|
|
|
binary = SM.ExtLibrary(builder, 'updater.ext')
|
|
|
|
binary.compiler.cxxincludes += [
|
|
|
|
os.path.join(SM.mms_root, 'core', 'sourcehook'),
|
|
|
|
]
|
|
|
|
|
|
|
|
binary.sources += [
|
|
|
|
'extension.cpp',
|
|
|
|
'MemoryDownloader.cpp',
|
|
|
|
'Updater.cpp',
|
|
|
|
'md5.cpp',
|
|
|
|
'sdk/smsdk_ext.cpp'
|
|
|
|
]
|
|
|
|
|
|
|
|
SM.binaries += [builder.Add(binary)]
|
2009-08-30 09:46:56 +02:00
|
|
|
|
2012-04-14 02:12:24 +02:00
|
|
|
|