File tree 4 files changed +11
-4
lines changed
4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
# ChangeLog
2
2
3
+ ## v1.0.1 - 2024-12-11
4
+
5
+ ### Bug Fixes:
6
+
7
+ * fix(repo): compile * .cpp files on MicroPython
8
+
3
9
## v1.0.0 - 2024-12-06
4
10
5
11
### Enhancements:
Original file line number Diff line number Diff line change 1
- version : " 1.0.0 "
1
+ version : " 1.0.1 "
2
2
description : ESP32_IO_Expander is a library designed for driving IO expander chips using ESP SoCs
3
3
url : https://github.com/esp-arduino-libs/ESP32_IO_Expander
4
4
repository : https://github.com/esp-arduino-libs/ESP32_IO_Expander.git
Original file line number Diff line number Diff line change 1
1
name =ESP32_IO_Expander
2
- version =1.0.0
2
+ version =1.0.1
3
3
author =espressif
4
4
maintainer =espressif
5
5
sentence =ESP32_IO_Expander is a library designed for driving IO expander chips using ESP SoCs
Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ add_library(usermod_esp_io_expander INTERFACE)
4
4
5
5
# Set the source directorya and find all source files.
6
6
set (SRC_DIR ${CMAKE_CURRENT_LIST_DIR} /src)
7
- file (GLOB_RECURSE SRCS ${SRC_DIR} /*.c)
7
+ file (GLOB_RECURSE SRCS_C ${SRC_DIR} /*.c)
8
+ file (GLOB_RECURSE SRCS_CXX ${SRC_DIR} /*.cpp)
8
9
9
10
# Add our source files to the library.
10
- target_sources (usermod_esp_io_expander INTERFACE ${SRCS } )
11
+ target_sources (usermod_esp_io_expander INTERFACE ${SRCS_C} ${SRCS_CXX } )
11
12
12
13
# Add the current directory as an include directory.
13
14
target_include_directories (usermod_esp_io_expander INTERFACE ${SRC_DIR} )
You can’t perform that action at this time.
0 commit comments