File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 11# ChangeLog
22
3+ ## v1.0.1 - 2024-12-11
4+
5+ ### Bug Fixes:
6+
7+ * fix(repo): compile * .cpp files on MicroPython
8+
39## v1.0.0 - 2024-12-06
410
511### Enhancements:
Original file line number Diff line number Diff line change 1- version : " 1.0.0 "
1+ version : " 1.0.1 "
22description : ESP32_IO_Expander is a library designed for driving IO expander chips using ESP SoCs
33url : https://github.com/esp-arduino-libs/ESP32_IO_Expander
44repository : https://github.com/esp-arduino-libs/ESP32_IO_Expander.git
Original file line number Diff line number Diff line change 11name =ESP32_IO_Expander
2- version =1.0.0
2+ version =1.0.1
33author =espressif
44maintainer =espressif
55sentence =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)
44
55# Set the source directorya and find all source files.
66set (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)
89
910# 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 } )
1112
1213# Add the current directory as an include directory.
1314target_include_directories (usermod_esp_io_expander INTERFACE ${SRC_DIR} )
You can’t perform that action at this time.
0 commit comments