From 302dd0423610204859a30dc6c702252108184b06 Mon Sep 17 00:00:00 2001 From: zhaolichang Date: Mon, 24 Feb 2025 15:59:12 +0800 Subject: [PATCH] convert preload_tune from dynamic library to static library --- src/plugin/tune/system/preload/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/tune/system/preload/CMakeLists.txt b/src/plugin/tune/system/preload/CMakeLists.txt index d704c6b..0e1a1a9 100644 --- a/src/plugin/tune/system/preload/CMakeLists.txt +++ b/src/plugin/tune/system/preload/CMakeLists.txt @@ -1,5 +1,5 @@ project(preload_tune) -add_library(preload_tune SHARED +add_library(preload_tune STATIC preload_tune.cpp ) -- 2.33.0