From 127dd09a7a859d69cd82bce0123106b9119c16e6 Mon Sep 17 00:00:00 2001 From: Leonid Fedorov Date: Tue, 20 May 2025 02:24:17 +0000 Subject: [PATCH] fix back statics --- utils/startup/CMakeLists.txt | 2 +- writeengine/bulk/CMakeLists.txt | 2 +- writeengine/xml/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/startup/CMakeLists.txt b/utils/startup/CMakeLists.txt index c6284106e..802576f87 100644 --- a/utils/startup/CMakeLists.txt +++ b/utils/startup/CMakeLists.txt @@ -2,7 +2,7 @@ include_directories(${ENGINE_COMMON_INCLUDES}) add_definitions(-fPIC -DPIC) -columnstore_library(idbboot installdir.cpp) +add_library(idbboot STATIC installdir.cpp) add_dependencies(idbboot external_boost) install(TARGETS idbboot DESTINATION ${ENGINE_LIBDIR}) diff --git a/writeengine/bulk/CMakeLists.txt b/writeengine/bulk/CMakeLists.txt index 6ed311452..a3dcef686 100644 --- a/writeengine/bulk/CMakeLists.txt +++ b/writeengine/bulk/CMakeLists.txt @@ -26,7 +26,7 @@ set(we_bulk_STAT_SRCS ) add_definitions(-D_FILE_OFFSET_BITS=64) -columnstore_library(we_bulk ${we_bulk_STAT_SRCS}) +add_library(we_bulk STATIC ${we_bulk_STAT_SRCS}) add_dependencies(we_bulk loggingcpp) diff --git a/writeengine/xml/CMakeLists.txt b/writeengine/xml/CMakeLists.txt index a23e1e958..4441b3238 100644 --- a/writeengine/xml/CMakeLists.txt +++ b/writeengine/xml/CMakeLists.txt @@ -6,7 +6,7 @@ set(we_xml_STAT_SRCS we_xmlop.cpp we_xmljob.cpp we_xmlgendata.cpp we_xmlgenproc. add_definitions(-D_FILE_OFFSET_BITS=64) -columnstore_library(we_xml ${we_xml_STAT_SRCS}) +add_library(we_xml STATIC ${we_xml_STAT_SRCS}) add_dependencies(we_xml loggingcpp)