23 lines
1.3 KiB
CMake
23 lines
1.3 KiB
CMake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
file(MAKE_DIRECTORY
|
|
"/home/sam/esp/esp-idf/components/bootloader/subproject"
|
|
"/media/sam/8294CD2994CD2111/Users/Dell/Documents/ESP/zigbee_router_c6/build/bootloader"
|
|
"/media/sam/8294CD2994CD2111/Users/Dell/Documents/ESP/zigbee_router_c6/build/bootloader-prefix"
|
|
"/media/sam/8294CD2994CD2111/Users/Dell/Documents/ESP/zigbee_router_c6/build/bootloader-prefix/tmp"
|
|
"/media/sam/8294CD2994CD2111/Users/Dell/Documents/ESP/zigbee_router_c6/build/bootloader-prefix/src/bootloader-stamp"
|
|
"/media/sam/8294CD2994CD2111/Users/Dell/Documents/ESP/zigbee_router_c6/build/bootloader-prefix/src"
|
|
"/media/sam/8294CD2994CD2111/Users/Dell/Documents/ESP/zigbee_router_c6/build/bootloader-prefix/src/bootloader-stamp"
|
|
)
|
|
|
|
set(configSubDirs )
|
|
foreach(subDir IN LISTS configSubDirs)
|
|
file(MAKE_DIRECTORY "/media/sam/8294CD2994CD2111/Users/Dell/Documents/ESP/zigbee_router_c6/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
|
|
endforeach()
|
|
if(cfgdir)
|
|
file(MAKE_DIRECTORY "/media/sam/8294CD2994CD2111/Users/Dell/Documents/ESP/zigbee_router_c6/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
|
|
endif()
|