You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
16 lines
331 B
CMake
16 lines
331 B
CMake
include_directories(${ENGINE_COMMON_INCLUDES})
|
|
|
|
# ########## next target ###############
|
|
|
|
set(cplogger_SRCS main.cpp)
|
|
|
|
add_executable(cplogger ${cplogger_SRCS})
|
|
|
|
target_link_libraries(cplogger ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
|
|
|
install(
|
|
TARGETS cplogger
|
|
DESTINATION ${ENGINE_BINDIR}
|
|
COMPONENT columnstore-engine
|
|
)
|