This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 337c1128db7 drivers/ioexpander/CMakeLists.txt: Aligned Cmake with Make
337c1128db7 is described below

commit 337c1128db7832f9d03f9cdb60d48a219484858c
Author: simbit18 <101105604+simbi...@users.noreply.github.com>
AuthorDate: Wed Aug 20 12:06:32 2025 +0200

    drivers/ioexpander/CMakeLists.txt: Aligned Cmake with Make
    
    Add:
    
    iC-JX driver #11590
    
    ISO1H812G driver #10426
    
    ISO1I813T driver #10435
    
    PCA9557 driver #16042
    
    mcp23008 driver #10532
    
    Signed-off-by: simbit18 <simbi...@gmail.com>
---
 drivers/ioexpander/CMakeLists.txt | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/drivers/ioexpander/CMakeLists.txt 
b/drivers/ioexpander/CMakeLists.txt
index d5b594200cf..76f56102bd7 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()

Reply via email to