From ef47cfb277e1c3670cadddc619ca85f1123926ee Mon Sep 17 00:00:00 2001 From: Laurentiu Cristofor Date: Tue, 11 May 2021 12:46:33 -0700 Subject: [PATCH] Make common library static --- production/db/core/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/production/db/core/CMakeLists.txt b/production/db/core/CMakeLists.txt index 39a5514c0561..2651e565605f 100644 --- a/production/db/core/CMakeLists.txt +++ b/production/db/core/CMakeLists.txt @@ -60,7 +60,7 @@ endforeach(FBS_SOURCE) ############################################### # Our main target. ############################################### -add_library(gaia_storage SHARED +add_library(gaia_storage STATIC src/record_list.cpp src/record_list_manager.cpp) target_include_directories(gaia_storage PUBLIC ${GAIA_DB_CORE_PUBLIC_INCLUDES})