From 6ff4f99672bc61e4d5d90db965b33cb7ddfef9d0 Mon Sep 17 00:00:00 2001 From: DefTruth <31974251+DefTruth@users.noreply.github.com> Date: Sat, 17 Sep 2022 20:25:08 +0800 Subject: [PATCH] [cmake] update ppdet examples CMakeLists.txt (#249) [cmake] update ppdet examples CMakeLists.txt --- examples/vision/detection/paddledetection/cpp/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/vision/detection/paddledetection/cpp/CMakeLists.txt b/examples/vision/detection/paddledetection/cpp/CMakeLists.txt index b570aa2db..de3118730 100644 --- a/examples/vision/detection/paddledetection/cpp/CMakeLists.txt +++ b/examples/vision/detection/paddledetection/cpp/CMakeLists.txt @@ -26,3 +26,6 @@ target_link_libraries(infer_yolov3_demo ${FASTDEPLOY_LIBS}) add_executable(infer_ppyolo_demo ${PROJECT_SOURCE_DIR}/infer_ppyolo.cc) target_link_libraries(infer_ppyolo_demo ${FASTDEPLOY_LIBS}) + +add_executable(infer_mask_rcnn_demo ${PROJECT_SOURCE_DIR}/infer_mask_rcnn.cc) +target_link_libraries(infer_mask_rcnn_demo ${FASTDEPLOY_LIBS})