17 lines
305 B
Python
17 lines
305 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
list = os.listdir(cwd)
|
|
CPPPATH = [cwd]
|
|
objs = []
|
|
|
|
inc = [cwd + "/include"]
|
|
|
|
LIBS = ['qm_mmi']
|
|
LIBPATH = [cwd + '/rtt']
|
|
|
|
objs = DefineGroup('qxos', src, depend = [''], CPPPATH = inc, LIBPATH = LIBPATH, LIBS = LIBS)
|
|
|
|
Return('objs')
|