Modbus TCP - Multi Devices

This commit is contained in:
Death7z
2026-04-14 14:41:00 -05:00
commit 894d35a256
1483 changed files with 238546 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file LICENSE.rst or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake
# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an
# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it
# would cause a fatal error, even though it would be a no-op.
if(NOT EXISTS "C:/esp/v6.0/esp-idf/components/bootloader/subproject")
file(MAKE_DIRECTORY "C:/esp/v6.0/esp-idf/components/bootloader/subproject")
endif()
file(MAKE_DIRECTORY
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader"
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix"
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/tmp"
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp"
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src"
"C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
endif()