mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 02:59:23 +08:00
c77e9d5c76
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2399 bbd45198-f89e-11dd-88c7-29a3b14d5316
12 lines
202 B
Python
12 lines
202 B
Python
|
|
import os
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
group = DefineGroup('lua', src, depend = ['RT_USING_LUA'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|