You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
225 B
10 lines
225 B
|
4 weeks ago
|
from building import *
|
||
|
|
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
path = [cwd+'/inc']
|
||
|
|
src = Glob('src/*.c')
|
||
|
|
src += Glob('sample/*.c')
|
||
|
|
|
||
|
|
group = DefineGroup('modbus', src, depend = ['PKG_USING_QMODBUS'], CPPPATH = path)
|
||
|
|
|
||
|
|
Return('group')
|