From ca9da2dd49c0c3ca62a4a5903e4d39f42d4b1a94 Mon Sep 17 00:00:00 2001 From: Morgan Funtowicz Date: Wed, 10 Jul 2024 13:48:59 +0000 Subject: [PATCH] create cmake install target to put everything relevant in installation folder --- backends/trtllm/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/backends/trtllm/CMakeLists.txt b/backends/trtllm/CMakeLists.txt index 5bb61568..d5c09998 100644 --- a/backends/trtllm/CMakeLists.txt +++ b/backends/trtllm/CMakeLists.txt @@ -32,6 +32,7 @@ target_include_directories(tgi_trtllm_backend_impl PUBLIC "${trtllm_SOURCE_DIR}/ target_link_libraries(tgi_trtllm_backend_impl PRIVATE tensorrt_llm nvinfer_plugin_tensorrt_llm CUDA::nvml) target_link_libraries(tgi_trtllm_backend_impl PUBLIC nlohmann_json::nlohmann_json spdlog::spdlog) +install(TARGETS tgi_trtllm_backend_impl tensorrt_llm nvinfer_plugin_tensorrt_llm spdlog) #### Unit Tests #### if (${TGI_TRTLLM_BACKEND_BUILD_TESTS})