mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 17:18:56 +00:00
13 lines
235 B
Python
13 lines
235 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
path = [cwd]
|
|
src = Glob('*.c')
|
|
|
|
path += [cwd + '/ports']
|
|
src += Glob('ports/chat_port.c')
|
|
|
|
group = DefineGroup('llm', src, depend = ['LPKG_USING_LLMCHAT'], CPPPATH = path)
|
|
|
|
Return('group')
|