From 97f0d8463703602233a3ad9495982bf7564b606b Mon Sep 17 00:00:00 2001 From: Heiko Joerg Schick Date: Sat, 17 Oct 2020 16:51:24 +0200 Subject: [PATCH] Added OpenCV libraries location --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f8f16fe..9d14b22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,4 +6,7 @@ cmake_minimum_required(VERSION 3.5.1) # project information project(sample-objectdetection) +include_directories(/home/ascend/ascend_ddk/arm/include/opencv4) +link_directories(/home/ascend/ascend_ddk/arm/lib) + add_subdirectory("./src")