10 lines
229 B
CMake
10 lines
229 B
CMake
# Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
|
|
|
|
# CMake lowest version requirement
|
|
cmake_minimum_required(VERSION 3.5.1)
|
|
|
|
# project information
|
|
project(sample-objectdetection)
|
|
|
|
add_subdirectory("./src")
|