mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 00:57:33 +08:00

* cpp example run success * add landmarks * fix reviewed problem * add pybind * add readme in examples * fix reviewed problem * new file: tests/models/test_centerface.py * fix reviewed problem 230202
15 lines
503 B
CMake
15 lines
503 B
CMake
PROJECT(infer_demo C CXX)
|
|
CMAKE_MINIMUM_REQUIRED (VERSION 3.10)
|
|
|
|
# Specifies the path to the fastdeploy library after you have downloaded it
|
|
option(FASTDEPLOY_INSTALL_DIR "Path of downloaded fastdeploy sdk.")
|
|
|
|
include(${FASTDEPLOY_INSTALL_DIR}/FastDeploy.cmake)
|
|
|
|
# Include the FastDeploy dependency header file
|
|
include_directories(${FASTDEPLOY_INCS})
|
|
|
|
add_executable(infer_demo ${PROJECT_SOURCE_DIR}/infer.cc)
|
|
# Add the FastDeploy library dependency
|
|
target_link_libraries(infer_demo ${FASTDEPLOY_LIBS})
|