You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
414 B
CMake
14 lines
414 B
CMake
8 months ago
|
PROJECT(infer_demo C)
|
||
|
CMAKE_MINIMUM_REQUIRED (VERSION 3.10)
|
||
|
|
||
|
# 指定下载解压后的fastdeploy库路径
|
||
|
option(FASTDEPLOY_INSTALL_DIR "Path of downloaded fastdeploy sdk.")
|
||
|
|
||
|
include(${FASTDEPLOY_INSTALL_DIR}/FastDeploy.cmake)
|
||
|
|
||
|
# 添加FastDeploy依赖头文件
|
||
|
include_directories(${FASTDEPLOY_INCS})
|
||
|
|
||
|
add_executable(infer_demo ${PROJECT_SOURCE_DIR}/infer.c)
|
||
|
target_link_libraries(infer_demo ${FASTDEPLOY_LIBS})
|