mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-24 02:37:22 +08:00
16 lines
258 B
Python
16 lines
258 B
Python
|
from building import *
|
||
|
|
||
|
group = []
|
||
|
|
||
|
if not GetDepend(['RT_USING_PIC']):
|
||
|
Return('group')
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
CPPPATH = [cwd + '/../include']
|
||
|
|
||
|
src = ['pic.c']
|
||
|
|
||
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|