20 lines
548 B
Plaintext
20 lines
548 B
Plaintext
|
# vim: set ts=2 sw=2 tw=99 noet ft=python:
|
||
|
import os
|
||
|
|
||
|
compiler = SM.DefaultExtCompiler('extensions/topmenus')
|
||
|
compiler['CXXINCLUDES'].append(os.path.join(SM.mmsPath, 'core', 'sourcehook'))
|
||
|
|
||
|
extension = AMBuild.AddJob('topmenus.ext')
|
||
|
binary = Cpp.LibraryBuilder('topmenus.ext', AMBuild, extension, compiler)
|
||
|
binary.AddSourceFiles('extensions/topmenus', [
|
||
|
'extension.cpp',
|
||
|
'smn_topmenus.cpp',
|
||
|
'TopMenu.cpp',
|
||
|
'TopMenuManager.cpp',
|
||
|
'sdk/smsdk_ext.cpp',
|
||
|
'sdk/sm_memtable.cpp'
|
||
|
])
|
||
|
SM.AutoVersion('extensions/topmenus', binary)
|
||
|
binary.SendToJob()
|
||
|
|