feat(XCamera): 实现异步抓图功能并优化图像处理
fix(nginx): 调整企业微信回调代理路径 feat(gateway): 添加企业微信消息处理功能 docs: 更新项目规划文档和企业微信配置详情 refactor(XCamera): 重构LED检测和图像处理逻辑 test: 添加ONVIF抓图测试功能
This commit is contained in:
@@ -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 3.5)
|
||||
|
||||
# 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 "D:/DiskC/ProgramFiles/Espressif/frameworks/esp-idf-v5.2.6/components/bootloader/subproject")
|
||||
file(MAKE_DIRECTORY "D:/DiskC/ProgramFiles/Espressif/frameworks/esp-idf-v5.2.6/components/bootloader/subproject")
|
||||
endif()
|
||||
file(MAKE_DIRECTORY
|
||||
"D:/Projects/trunk/JoyD/ESP32/my_usb_project/build/bootloader"
|
||||
"D:/Projects/trunk/JoyD/ESP32/my_usb_project/build/bootloader-prefix"
|
||||
"D:/Projects/trunk/JoyD/ESP32/my_usb_project/build/bootloader-prefix/tmp"
|
||||
"D:/Projects/trunk/JoyD/ESP32/my_usb_project/build/bootloader-prefix/src/bootloader-stamp"
|
||||
"D:/Projects/trunk/JoyD/ESP32/my_usb_project/build/bootloader-prefix/src"
|
||||
"D:/Projects/trunk/JoyD/ESP32/my_usb_project/build/bootloader-prefix/src/bootloader-stamp"
|
||||
)
|
||||
|
||||
set(configSubDirs )
|
||||
foreach(subDir IN LISTS configSubDirs)
|
||||
file(MAKE_DIRECTORY "D:/Projects/trunk/JoyD/ESP32/my_usb_project/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
|
||||
endforeach()
|
||||
if(cfgdir)
|
||||
file(MAKE_DIRECTORY "D:/Projects/trunk/JoyD/ESP32/my_usb_project/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
|
||||
endif()
|
||||
Reference in New Issue
Block a user