You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-24 22:42:05 +03:00
16 lines
399 B
CMake
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})
|