mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
4846222102
The following changes have been made: 1. All FreeRTOS kernel source files are now placed in the freertos/FreeRTOS-Kernel folder to match with the upstream folder structure. 2. All kernel include files are now placed in freertos/FreeRTOS-Kernel/include. 3. All port files are now placed in freertos/FreeRTOS-Kernel/portable. 4. All additions/customizations are placed in freertos/esp_additions. 5. All other miscellaneous files (README, License files etc.) are moved to freertos/FreeRTOS-Kernel folder to match with the upstream. 6. Updated esp-cryptoauthlib to latest commit to resolve FreeRTOS include dependencies. Signed-off-by: Sudeep Mohanty <sudeep.mohanty@espressif.com>
19 lines
908 B
CMake
19 lines
908 B
CMake
# NOTE: This kind of mocking currently works on Linux targets only.
|
|
# On Espressif chips, too many dependencies are missing at the moment.
|
|
message(STATUS "building FREERTOS MOCKS (only task and queue)")
|
|
|
|
idf_component_get_property(original_freertos_dir freertos COMPONENT_OVERRIDEN_DIR)
|
|
|
|
set(include_dirs
|
|
"${original_freertos_dir}/FreeRTOS-Kernel/include"
|
|
"${original_freertos_dir}/esp_additions/include"
|
|
"${original_freertos_dir}/esp_additions/include/freertos"
|
|
"${original_freertos_dir}/FreeRTOS-Kernel/include/freertos" # this is due to the way includes are generated in CMock
|
|
"${original_freertos_dir}/FreeRTOS-Kernel/portable/linux/include")
|
|
|
|
idf_component_mock(INCLUDE_DIRS ${include_dirs}
|
|
REQUIRES esp_common
|
|
MOCK_HEADER_FILES
|
|
${original_freertos_dir}/FreeRTOS-Kernel/include/freertos/task.h
|
|
${original_freertos_dir}/FreeRTOS-Kernel/include/freertos/queue.h)
|