diff --git a/drivers/ioexpander/CMakeLists.txt b/drivers/ioexpander/CMakeLists.txt index d5b594200c..76f56102bd 100644 --- a/drivers/ioexpander/CMakeLists.txt +++ b/drivers/ioexpander/CMakeLists.txt @@ -35,6 +35,18 @@ if(CONFIG_IOEXPANDER) list(APPEND SRCS ioe_dummy.c) endif() + if(CONFIG_IOEXPANDER_ICJX) + list(APPEND SRCS icjx.c) + endif() + + if(CONFIG_IOEXPANDER_ISO1H812G) + list(APPEND SRCS iso1h812g.c) + endif() + + if(CONFIG_IOEXPANDER_ISO1I813T) + list(APPEND SRCS iso1i813t.c) + endif() + if(CONFIG_IOEXPANDER_PCA9555) list(APPEND SRCS pca9555.c) endif() @@ -43,6 +55,10 @@ if(CONFIG_IOEXPANDER) list(APPEND SRCS pca9538.c) endif() + if(CONFIG_IOEXPANDER_PCA9557) + list(APPEND SRCS pca9557.c) + endif() + if(CONFIG_IOEXPANDER_TCA64XX) list(APPEND SRCS tca64xx.c) endif() @@ -55,6 +71,10 @@ if(CONFIG_IOEXPANDER) list(APPEND SRCS pcf8575.c) endif() + if(CONFIG_IOEXPANDER_MCP23X08) + list(APPEND SRCS mcp23x08.c) + endif() + if(CONFIG_IOEXPANDER_MCP23X17) list(APPEND SRCS mcp23x17.c) endif()