forked from semaf/MFRC522_I2C_Library
20 lines
295 B
CMake
20 lines
295 B
CMake
set(headers
|
|
src/MFRC522_I2C.h
|
|
)
|
|
|
|
set(sources
|
|
src/MFRC522_I2C.cpp
|
|
)
|
|
|
|
idf_component_register(
|
|
INCLUDE_DIRS
|
|
src
|
|
SRCS
|
|
${headers}
|
|
${sources}
|
|
REQUIRES
|
|
arduino-esp32
|
|
)
|
|
|
|
target_compile_options(${COMPONENT_TARGET} PRIVATE -Wno-unused-but-set-variable)
|