xuxinyi 8d5cd00f99 添加ili9341驱动 10 ماه پیش
..
docs 8d5cd00f99 添加ili9341驱动 10 ماه پیش
scripts 8d5cd00f99 添加ili9341驱动 10 ماه پیش
test_apps 8d5cd00f99 添加ili9341驱动 10 ماه پیش
.component_hash 8d5cd00f99 添加ili9341驱动 10 ماه پیش
CHANGELOG.md 8d5cd00f99 添加ili9341驱动 10 ماه پیش
CMakeLists.txt 8d5cd00f99 添加ili9341驱动 10 ماه پیش
Kconfig 8d5cd00f99 添加ili9341驱动 10 ماه پیش
README.md 8d5cd00f99 添加ili9341驱动 10 ماه پیش
cmake_utilities.cmake 8d5cd00f99 添加ili9341驱动 10 ماه پیش
gcc.cmake 8d5cd00f99 添加ili9341驱动 10 ماه پیش
gen_compressed_ota.cmake 8d5cd00f99 添加ili9341驱动 10 ماه پیش
gen_single_bin.cmake 8d5cd00f99 添加ili9341驱动 10 ماه پیش
idf_component.yml 8d5cd00f99 添加ili9341驱动 10 ماه پیش
license.txt 8d5cd00f99 添加ili9341驱动 10 ماه پیش
package_manager.cmake 8d5cd00f99 添加ili9341驱动 10 ماه پیش
project_include.cmake 8d5cd00f99 添加ili9341驱动 10 ماه پیش
relinker.cmake 8d5cd00f99 添加ili9341驱动 10 ماه پیش

README.md

Cmake utilities

Component Registry

This component is aiming to provide some useful CMake utilities outside of ESP-IDF.

Use

  1. Add dependency of this component in your component or project's idf_component.yml.

    dependencies:
      espressif/cmake_utilities: "0.*"
    
  2. Include the CMake file you need in your component's CMakeLists.txt after idf_component_register, or in your project's CMakeLists.txt

    // Note: should remove .cmake postfix when using include(), otherwise the requested file will not found
    // Note: should place this line after `idf_component_register` function
    // only include the one you needed.
    include(package_manager)
    
  3. Then you can use the corresponding CMake function which is provided by the CMake file.

Supported features

  1. relinker
  2. gen_compressed_ota
  3. GCC Optimization