mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-08-28 00:28:38 +08:00
14 lines
272 B
Python
Executable File
14 lines
272 B
Python
Executable File
from building import *
|
|
|
|
group = []
|
|
src = []
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd + '/../../include']
|
|
|
|
if GetDepend(['RT_INPUT_MISC_PWRKEY_RK8XX']):
|
|
src += ['pwrkey-rk8xx.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|