You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-09-02 12:41:17 +03:00
15 lines
316 B
CMake
15 lines
316 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(getConfig_SRCS main.cpp)
|
|
|
|
add_executable(getConfig ${getConfig_SRCS})
|
|
|
|
target_link_libraries(getConfig ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS})
|
|
|
|
install(TARGETS getConfig DESTINATION ${ENGINE_BINDIR} COMPONENT platform)
|
|
|