mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 07:33:32 +08:00
c752d9b095
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2344 bbd45198-f89e-11dd-88c7-29a3b14d5316
16 lines
277 B
Python
16 lines
277 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split("""
|
|
core/core.c
|
|
core/usbdevice.c
|
|
class/cdc_vcom.c
|
|
""")
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_USB_DEVICE'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|