From 5a1a9a1e591c95a52af6e531702c231e0f42f703 Mon Sep 17 00:00:00 2001 From: Pei Yang Date: Wed, 12 Feb 2020 14:26:08 +0800 Subject: [PATCH] remove copying trt to inference lib, test=develop (#22470) --- cmake/inference_lib.cmake | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/cmake/inference_lib.cmake b/cmake/inference_lib.cmake index 72c9243c98..565477ccdb 100644 --- a/cmake/inference_lib.cmake +++ b/cmake/inference_lib.cmake @@ -124,13 +124,6 @@ function(copy_part_of_thrid_party TARGET DST) DSTS ${dst_dir} ${dst_dir}) endif () - if (TENSORRT_FOUND) - set(dst_dir "${DST}/third_party/install/tensorrt") - copy(${TARGET} - SRCS ${TENSORRT_INCLUDE_DIR}/Nv*.h ${TENSORRT_LIBRARY_DIR}/*nvinfer* - DSTS ${dst_dir}/include ${dst_dir}/lib) - endif () - if (LITE_BINARY_DIR) set(dst_dir "${DST}/third_party/install/lite") copy(${TARGET} @@ -283,8 +276,7 @@ function(version version_file) endif() if(TENSORRT_FOUND) file(APPEND ${version_file} - "WITH_TENSORRT: ${TENSORRT_FOUND}\n" - "TENSORRT_ROOT: ${TENSORRT_ROOT}\n") + "WITH_TENSORRT: ${TENSORRT_FOUND}\n") endif() endfunction() -- GitLab