From 799d53bec8ff2e3d631795bcaf53d17daf086dec Mon Sep 17 00:00:00 2001 From: Horror Proton <107091537+horror-proton@users.noreply.github.com> Date: Sat, 25 May 2024 16:14:30 +0800 Subject: [PATCH] chore: fix cmake fastdeploy target name --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e672d660d2..240a7b212b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,7 +105,7 @@ else() endif() get_target_property(fastdeploy_type fastdeploy_ppocr TYPE) if(fastdeploy_type STREQUAL "SHARED_LIBRARY") - install(TARGETS fastdeploy) + install(TARGETS fastdeploy_ppocr) endif() else() find_package(fastdeploy_ppocr REQUIRED)