18 lines
279 B
Python
18 lines
279 B
Python
import os
|
|
import rtconfig
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
# add general drivers
|
|
src = Split('''
|
|
toml.c
|
|
''')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('tomlc99', src, depend=[
|
|
'PKG_USING_TOMLC99'], CPPPATH=CPPPATH)
|
|
|
|
Return('group')
|