Files
player/Project/Src/rt-thread/components/drivers/pm/SConscript

15 lines
266 B
Python
Raw Normal View History

2025-06-27 00:32:57 +08:00
from building import *
cwd = GetCurrentDir()
src = []
CPPPATH = [cwd + '/../include']
group = []
if GetDepend(['RT_USING_PM']):
src = src + ['pm.c']
if len(src):
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')