1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-24 22:42:05 +03:00
Files
Roman Nozdrin 67c85dae15 MCOL-4809 The patch replaces legacy scanning/filtering code with a number of templates that
simplifies control flow removing needless expressions
2021-09-06 17:04:52 +00:00

16 lines
399 B
CMake

include_directories( ${ENGINE_COMMON_INCLUDES} ../blockcache ../primproc)
########### next target ###############
set(processor_STAT_SRCS primitiveprocessor.cpp dictionary.cpp column.cpp)
add_library(processor STATIC ${processor_STAT_SRCS})
add_dependencies(processor loggingcpp)
target_link_libraries(processor ${NETSNMP_LIBRARIES})
INSTALL (TARGETS processor DESTINATION ${ENGINE_LIBDIR})