Skip to content

Commit 337c112

Browse files
simbit18xiaoxiang781216
authored andcommitted
drivers/ioexpander/CMakeLists.txt: Aligned Cmake with Make
Add: iC-JX driver apache#11590 ISO1H812G driver apache#10426 ISO1I813T driver apache#10435 PCA9557 driver apache#16042 mcp23008 driver apache#10532 Signed-off-by: simbit18 <simbit18@gmail.com>
1 parent 50bbad5 commit 337c112

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

drivers/ioexpander/CMakeLists.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,18 @@ if(CONFIG_IOEXPANDER)
3535
list(APPEND SRCS ioe_dummy.c)
3636
endif()
3737

38+
if(CONFIG_IOEXPANDER_ICJX)
39+
list(APPEND SRCS icjx.c)
40+
endif()
41+
42+
if(CONFIG_IOEXPANDER_ISO1H812G)
43+
list(APPEND SRCS iso1h812g.c)
44+
endif()
45+
46+
if(CONFIG_IOEXPANDER_ISO1I813T)
47+
list(APPEND SRCS iso1i813t.c)
48+
endif()
49+
3850
if(CONFIG_IOEXPANDER_PCA9555)
3951
list(APPEND SRCS pca9555.c)
4052
endif()
@@ -43,6 +55,10 @@ if(CONFIG_IOEXPANDER)
4355
list(APPEND SRCS pca9538.c)
4456
endif()
4557

58+
if(CONFIG_IOEXPANDER_PCA9557)
59+
list(APPEND SRCS pca9557.c)
60+
endif()
61+
4662
if(CONFIG_IOEXPANDER_TCA64XX)
4763
list(APPEND SRCS tca64xx.c)
4864
endif()
@@ -55,6 +71,10 @@ if(CONFIG_IOEXPANDER)
5571
list(APPEND SRCS pcf8575.c)
5672
endif()
5773

74+
if(CONFIG_IOEXPANDER_MCP23X08)
75+
list(APPEND SRCS mcp23x08.c)
76+
endif()
77+
5878
if(CONFIG_IOEXPANDER_MCP23X17)
5979
list(APPEND SRCS mcp23x17.c)
6080
endif()

0 commit comments

Comments
 (0)