mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
15 lines
433 B
CMake
15 lines
433 B
CMake
register_config_only_component()
|
|
|
|
# Generate pre-canned flasher args files suitable for passing to esptool.py
|
|
foreach(part project app bootloader partition_table)
|
|
configure_file(
|
|
"${CMAKE_CURRENT_LIST_DIR}/flash_${part}_args.in"
|
|
"${CMAKE_BINARY_DIR}/flash_${part}_args"
|
|
)
|
|
endforeach()
|
|
|
|
configure_file(
|
|
"${CMAKE_CURRENT_LIST_DIR}/flasher_args.json.in"
|
|
"${CMAKE_BINARY_DIR}/flasher_args.json"
|
|
)
|