2 Star 0 Fork 5

Temporary_openharmony-tpc/ai_framework_integration

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMakeLists.txt 1015 Bytes
一键复制 编辑 原始数据 按行查看 历史
if(NOT DEFINED AI_INTEGRATION_VERSION)
string(TIMESTAMP NCNN_VERSION "%Y%m%d")
endif()
set(AI_INTEGRATION_VERSION_MAJOR 1)
set(AI_INTEGRATION_VERSION_MINOR 0)
set(AI_INTEGRATION_VERSION_PATCH ${AI_INTEGRATION_VERSION})
set(AI_INTEGRATION_VERSION_STRING ${AI_INTEGRATION_VERSION_MAJOR}.${AI_INTEGRATION_VERSION_MINOR}.${AI_INTEGRATION_VERSION_PATCH})
message(STATUS "AI_INTEGRATION_VERSION_STRING = ${AI_INTEGRATION_VERSION_STRING}")
cmake_minimum_required(VERSION 2.8.12)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE release CACHE STRING "Choose the type of build" FORCE)
endif()
if(NOT CMAKE_VERSION VERSION_LESS "3.15")
# enable CMAKE_MSVC_RUNTIME_LIBRARY
cmake_policy(SET CMP0091 NEW)
endif()
if(POLICY CMP0025)
# reference from https://cmake.org/cmake/help/latest/policy/CMP0025.html
cmake_policy(SET CMP0025 NEW)
endif()
project(ai_integration)
add_subdirectory(third_party/ncnn)
add_subdirectory(framework)
add_subdirectory(example/face_detection)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/temporary_openharmony-tpc/ai_framework_integration.git
[email protected]:temporary_openharmony-tpc/ai_framework_integration.git
temporary_openharmony-tpc
ai_framework_integration
ai_framework_integration
master

搜索帮助