-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
45 lines (38 loc) · 2.16 KB
/
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
37
38
39
40
41
42
43
44
45
cmake_minimum_required(VERSION 3.16.0)
list(APPEND EXTRA_COMPONENT_DIRS
"components/utilities/esp_kalman_motion"
"components/utilities/esp_pressure_tendency"
"components/utilities/esp_scalar_trend"
"components/utilities/sensirion_gas_index_algorithm"
"components/utilities/esp_type_utils"
"components/peripherals/adc/esp_s12sd"
"components/peripherals/i2c/esp_driver_i2c_ext"
"components/peripherals/i2c/esp_ahtxx"
"components/peripherals/i2c/esp_ak8975"
"components/peripherals/i2c/esp_as7341"
"components/peripherals/i2c/esp_bh1750"
"components/peripherals/i2c/esp_bmp280"
"components/peripherals/i2c/esp_bmp390"
"components/peripherals/i2c/esp_ccs811"
"components/peripherals/i2c/esp_ens160"
"components/peripherals/i2c/esp_hdc1080"
"components/peripherals/i2c/esp_hmc5883l"
"components/peripherals/i2c/esp_ltr390uv"
#"components/peripherals/i2c/esp_max30105"
"components/peripherals/i2c/esp_mlx90614"
"components/peripherals/i2c/esp_mmc56x3"
"components/peripherals/i2c/esp_mpu6050"
"components/peripherals/i2c/esp_sgp4x"
"components/peripherals/i2c/esp_sht4x"
"components/peripherals/i2c/esp_ssd1306"
"components/peripherals/i2c/esp_tlv493d"
"components/peripherals/i2c/esp_veml7700"
"components/peripherals/owb/onewire_bus"
"components/peripherals/owb/esp_ds18b20"
"components/peripherals/spi/esp_max31865"
"components/schedule/esp_time_into_interval"
"components/storage/esp_datalogger"
"components/storage/esp_nvs_ext"
)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(ESP32-S3_ESP-IDF_COMPONENTS)