mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
12 lines
214 B
Python
12 lines
214 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
#src += Glob('./minimp3_test.c')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('libminimp3', src, depend = ['LPKG_USING_MINIMP3'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|