mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
12 lines
271 B
CMake
12 lines
271 B
CMake
# Allows for use with ESP-IDF and Arduino as component
|
|
# Tested with ESP-IDF v4.4.4
|
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
idf_component_register(SRCS "MCP23008.cpp"
|
|
INCLUDE_DIRS "."
|
|
REQUIRES arduino)
|
|
|
|
project(MCP23008)
|
|
|