Files
luban-lite/packages/third-party/llm_chat/SConscript
刘可亮 6e36e8e296 v1.2.0
2025-04-23 17:54:31 +08:00

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')