forked from bluekitchen/btstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent.mk
54 lines (48 loc) · 1.32 KB
/
component.mk
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#
# Main component makefile.
#
# This Makefile can be left empty. By default, it will take the sources in the
# src/ directory, compile them and link them into lib(subdirectory_name).a
# in the build directory. This behaviour is entirely configurable,
# please read the ESP-IDF documents if you need to do this.
#
# micro-ecc of ESP32 tree was moved into components/bootloader/micro-ecc in v3.3
# we use our copy, but keep it private to not clash compiling the bootloader
COMPONENT_ADD_INCLUDEDIRS := \
3rd-party/bluedroid/decoder/include \
3rd-party/bluedroid/encoder/include \
3rd-party/hxcmod-player \
3rd-party/hxcmod-player/mods \
../lwip/lwip/src/include \
3rd-party/lwip/dhcp-server \
3rd-party/md5 \
3rd-party/yxml \
src/classic \
src \
platform/embedded \
platform/freertos \
platform/lwip \
include \
COMPONENT_PRIV_INCLUDEDIRS := \
3rd-party/micro-ecc \
COMPONENT_SRCDIRS := \
3rd-party/bluedroid/decoder/srce \
3rd-party/bluedroid/encoder/srce \
3rd-party/hxcmod-player \
3rd-party/hxcmod-player/mods \
../lwip/lwip/src/apps/http \
3rd-party/lwip/dhcp-server \
3rd-party/micro-ecc \
3rd-party/md5 \
src/ble/gatt-service \
src/ble \
src/mesh \
src/ \
platform/embedded \
platform/freertos \
platform/lwip \
. \
ifdef CONFIG_IDF_TARGET_ESP32
COMPONENT_SRCDIRS += src/classic
endif
CFLAGS += -Wno-format