BUGS-P-0 A-1-i Under-dev Proto

This commit is contained in:
2026-06-17 12:47:15 -04:00
commit cf00d159ca
1308 changed files with 140088 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
# 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 ${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 "/home/p7mj/pico/lora_node/_deps/picotool-src")
file(MAKE_DIRECTORY "/home/p7mj/pico/lora_node/_deps/picotool-src")
endif()
file(MAKE_DIRECTORY
"/home/p7mj/pico/lora_node/_deps/picotool-build"
"/home/p7mj/pico/lora_node/_deps/picotool-subbuild/picotool-populate-prefix"
"/home/p7mj/pico/lora_node/_deps/picotool-subbuild/picotool-populate-prefix/tmp"
"/home/p7mj/pico/lora_node/_deps/picotool-subbuild/picotool-populate-prefix/src/picotool-populate-stamp"
"/home/p7mj/pico/lora_node/_deps/picotool-subbuild/picotool-populate-prefix/src"
"/home/p7mj/pico/lora_node/_deps/picotool-subbuild/picotool-populate-prefix/src/picotool-populate-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "/home/p7mj/pico/lora_node/_deps/picotool-subbuild/picotool-populate-prefix/src/picotool-populate-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "/home/p7mj/pico/lora_node/_deps/picotool-subbuild/picotool-populate-prefix/src/picotool-populate-stamp${cfgdir}") # cfgdir has leading slash
endif()