10 lines
193 B
Python
10 lines
193 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
CPPPATH = [cwd + '/inc']
|
|
group = DefineGroup('numicro_common', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|