Files
luban-lite/packages/third-party/llm_chat/SConscript

13 lines
235 B
Python
Raw Normal View History

2025-04-23 17:54:31 +08:00
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')