mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
9 lines
189 B
CMake
9 lines
189 B
CMake
|
# Copyright (c) OpenMMLab. All rights reserved.
|
||
|
cmake_minimum_required(VERSION 3.14)
|
||
|
|
||
|
add_subdirectory(cpu)
|
||
|
|
||
|
if ("cuda" IN_LIST MMDEPLOY_TARGET_DEVICES)
|
||
|
add_subdirectory(cuda)
|
||
|
endif ()
|