31 lines
772 B
CMake
31 lines
772 B
CMake
# Copyright (c) OpenMMLab. All rights reserved.
|
|
cmake_minimum_required(VERSION 3.14)
|
|
project(mmdeploy_net_module)
|
|
|
|
include(${CMAKE_SOURCE_DIR}/cmake/common.cmake)
|
|
|
|
if ("trt" IN_LIST MMDEPLOY_TARGET_BACKENDS)
|
|
add_subdirectory(trt)
|
|
endif ()
|
|
|
|
if ("pplnn" IN_LIST MMDEPLOY_TARGET_BACKENDS)
|
|
add_subdirectory(ppl)
|
|
endif ()
|
|
|
|
if ("ort" IN_LIST MMDEPLOY_TARGET_BACKENDS)
|
|
add_subdirectory(ort)
|
|
endif ()
|
|
|
|
if ("ncnn" IN_LIST MMDEPLOY_TARGET_BACKENDS)
|
|
add_subdirectory(ncnn)
|
|
endif ()
|
|
|
|
if ("openvino" IN_LIST MMDEPLOY_TARGET_BACKENDS)
|
|
add_subdirectory(openvino)
|
|
endif ()
|
|
|
|
build_target(${PROJECT_NAME} net_module.cpp)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE mmdeploy::core)
|
|
add_library(mmdeploy::net_module ALIAS ${PROJECT_NAME})
|
|
export_module(${PROJECT_NAME})
|