2009-08-30 09:46:56 +02:00
|
|
|
# vim: set ts=2 sw=2 tw=99 noet ft=python:
|
|
|
|
import os
|
|
|
|
|
|
|
|
compiler = SM.DefaultExtCompiler('extensions/clientprefs')
|
|
|
|
compiler['CXXINCLUDES'].append(os.path.join(SM.mmsPath, 'core', 'sourcehook'))
|
|
|
|
|
|
|
|
extension = AMBuild.AddJob('clientprefs.ext')
|
|
|
|
binary = Cpp.LibraryBuilder('clientprefs.ext', AMBuild, extension, compiler)
|
|
|
|
binary.AddSourceFiles('extensions/clientprefs', [
|
|
|
|
'extension.cpp',
|
|
|
|
'cookie.cpp',
|
|
|
|
'menus.cpp',
|
|
|
|
'natives.cpp',
|
|
|
|
'query.cpp',
|
|
|
|
'sdk/smsdk_ext.cpp'
|
|
|
|
])
|
|
|
|
SM.AutoVersion('extensions/clientprefs', binary)
|
|
|
|
binary.SendToJob()
|
2012-04-14 02:12:24 +02:00
|
|
|
|