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, 'topmenus.ext')
|
|
|
|
binary.compiler.cxxincludes += [
|
|
|
|
os.path.join(SM.mms_root, 'core', 'sourcehook'),
|
|
|
|
]
|
2009-08-30 09:46:56 +02:00
|
|
|
|
2013-12-30 23:50:56 +01:00
|
|
|
binary.sources += [
|
|
|
|
'extension.cpp',
|
|
|
|
'smn_topmenus.cpp',
|
|
|
|
'TopMenu.cpp',
|
|
|
|
'TopMenuManager.cpp',
|
|
|
|
'sdk/smsdk_ext.cpp',
|
|
|
|
'sdk/sm_memtable.cpp'
|
|
|
|
]
|
|
|
|
|
2013-12-30 23:50:59 +01:00
|
|
|
SM.extensions += [builder.Add(binary)]
|