-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
CMakeLists.txt
36 lines (35 loc) · 836 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
idf_component_register(
INCLUDE_DIRS
include
PRIV_INCLUDE_DIRS
internal
SRCS
src/rc522.c
src/rc522_helpers.c
src/rc522_pcd.c
src/rc522_picc.c
src/picc/rc522_mifare.c
src/rc522_driver.c
src/driver/rc522_spi.c
src/driver/rc522_i2c.c
REQUIRES
esp_event
# esp_driver_spi # introduced in esp-idf 5.3, autoincluded in 'driver' component
driver # required for i2c, TODO: migrate to the new API
)
target_compile_options(${COMPONENT_LIB} PRIVATE
-Werror # Warning as error
#-pedantic
-Wextra
-Wall
-Wshadow
-Wcast-qual
-Wswitch-default
#-Wswitch-enum
#-Wconversion
-Wunreachable-code
-Wuninitialized
-Winit-self
-Wpointer-arith
-Werror-implicit-function-declaration
)