mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-09-24 13:58:36 +08:00
[dm][input] support input #11031
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
menuconfig RT_INPUT_TOUCHSCREEN
|
||||
bool "Touchscreens"
|
||||
select RT_USING_TOUCH
|
||||
default n
|
||||
|
||||
if RT_INPUT_TOUCHSCREEN
|
||||
osource "$(SOC_DM_INPUT_TOUCHSCREEN_DIR)/Kconfig"
|
||||
endif
|
||||
@@ -0,0 +1,15 @@
|
||||
from building import *
|
||||
|
||||
group = []
|
||||
|
||||
if not GetDepend(['RT_INPUT_TOUCHSCREEN']):
|
||||
Return('group')
|
||||
|
||||
cwd = GetCurrentDir()
|
||||
CPPPATH = [cwd + '/../../include']
|
||||
|
||||
src = []
|
||||
|
||||
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
||||
|
||||
Return('group')
|
||||
Reference in New Issue
Block a user