You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
19 lines
400 B
CMake
19 lines
400 B
CMake
|
|
include_directories( ${ENGINE_COMMON_INCLUDES} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(oamcpp_LIB_SRCS liboamcpp.cpp oamcache.cpp)
|
|
|
|
add_library(oamcpp SHARED ${oamcpp_LIB_SRCS})
|
|
|
|
add_dependencies(oamcpp loggingcpp)
|
|
|
|
target_link_libraries(oamcpp )
|
|
|
|
target_compile_options(oamcpp PRIVATE -Wno-unused-result)
|
|
|
|
install(TARGETS oamcpp DESTINATION ${ENGINE_LIBDIR} COMPONENT columnstore-engine)
|
|
|