11 lines
238 B
Python
11 lines
238 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [os.path.join(cwd,'..')]
|
|
|
|
group = DefineGroup('ap_netconfig', src, depend = ['WEBNET_USING_CGI','PKG_USING_WEBNET'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|