Files
SDK_SG200x_V2/cviruntime/samples/classifier/CMakeLists.txt
carbon e25f20f7a3 add cviruntime
commit 3f4938648950a7f3bf9a19c320ca9fae7c52de20
Author: sophgo-forum-service <forum_service@sophgo.com>
Date:   Mon May 13 13:44:23 2024 +0800

    [feat] cviruntime opensource for cv18xx soc.

    - a4b6a3, add cumsum and gatherelements_pt.
2024-05-31 11:51:34 +08:00

41 lines
1.1 KiB
CMake

cmake_minimum_required(VERSION 2.8.0)
project(cvi_sample_classifier C CXX)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS ON)
if(NOT DEFINED TPU_SDK_PATH)
message(FATAL_ERROR "Please set TPU_SDK_PATH to point to the TPU_SDK installation")
endif()
include_directories(${TPU_SDK_PATH}/include)
link_directories(${TPU_SDK_PATH}/lib)
if(NOT DEFINED OPENCV_PATH)
message(FATAL_ERROR "Please set OPENCV_PATH to point to the opencvn installation")
endif()
include_directories(${OPENCV_PATH}/include)
link_directories(${OPENCV_PATH}/lib)
set(CVI_LIBS ${CVI_LIBS} cviruntime cvikernel)
if(NOT CMAKE_CROSSCOMPILING)
set(CVI_LIBS ${CVI_LIBS} cvicmodel)
endif()
set(OPENCV_LIBS ${OPENCV_LIBS} opencv_core opencv_imgcodecs opencv_imgproc)
if(NOT CMAKE_CROSSCOMPILING)
set(OPENCV_LIBS ${OPENCV_LIBS} opencv_highgui)
endif()
set(EXTRA_LIBS ${EXTRA_LIBS} dl stdc++ pthread z)
add_executable(cvi_sample_classifier
classifier.cpp)
target_link_libraries(cvi_sample_classifier
${CVI_LIBS}
${OPENCV_LIBS}
${EXTRA_LIBS})
install(TARGETS cvi_sample_classifier
cvi_sample_classifier DESTINATION bin)