mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 17:18:56 +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')
|