2009-06-10 10:59:49 +02:00
|
|
|
# MYSQL_STORAGE_ENGINE Macro creates a project to build storage engine
|
|
|
|
# library.
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# engine - storage engine name.
|
|
|
|
# variable ENGINE_BUILD_TYPE should be set to "STATIC" or "DYNAMIC"
|
|
|
|
# Remarks:
|
|
|
|
# ${engine}_SOURCES variable containing source files to produce the library must set before
|
|
|
|
# calling this macro
|
2009-10-08 14:54:11 +02:00
|
|
|
# ${engine}_LIBS variable containing extra libraries to link with may be set
|
|
|
|
|
2009-06-10 10:59:49 +02:00
|
|
|
|
|
|
|
MACRO(MYSQL_STORAGE_ENGINE engine)
|
|
|
|
IF(NOT SOURCE_SUBLIBS)
|
|
|
|
# Add common include directories
|
|
|
|
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/zlib
|
|
|
|
${CMAKE_SOURCE_DIR}/sql
|
|
|
|
${CMAKE_SOURCE_DIR}/regex
|
2011-01-29 18:51:12 +01:00
|
|
|
${CMAKE_SOURCE_DIR}/extra/yassl/include
|
|
|
|
${CMAKE_BINARY_DIR}/include
|
|
|
|
${CMAKE_BINARY_DIR}/sql
|
|
|
|
)
|
2009-06-10 10:59:49 +02:00
|
|
|
STRING(TOUPPER ${engine} engine)
|
|
|
|
STRING(TOLOWER ${engine} libname)
|
|
|
|
IF(${ENGINE_BUILD_TYPE} STREQUAL "STATIC")
|
|
|
|
ADD_DEFINITIONS(-DWITH_${engine}_STORAGE_ENGINE -DMYSQL_SERVER)
|
|
|
|
#Create static library. The name of the library is <storage_engine>.lib
|
|
|
|
ADD_LIBRARY(${libname} ${${engine}_SOURCES})
|
|
|
|
ADD_DEPENDENCIES(${libname} GenError)
|
2009-10-08 14:54:11 +02:00
|
|
|
IF(${engine}_LIBS)
|
|
|
|
TARGET_LINK_LIBRARIES(${libname} ${${engine}_LIBS})
|
|
|
|
ENDIF(${engine}_LIBS)
|
2009-06-10 10:59:49 +02:00
|
|
|
MESSAGE("build ${engine} as static library")
|
|
|
|
ELSEIF(${ENGINE_BUILD_TYPE} STREQUAL "DYNAMIC")
|
|
|
|
ADD_DEFINITIONS(-DMYSQL_DYNAMIC_PLUGIN)
|
|
|
|
#Create a DLL.The name of the dll is ha_<storage_engine>.dll
|
|
|
|
#The dll is linked to the mysqld executable
|
|
|
|
SET(dyn_libname ha_${libname})
|
2011-01-29 18:51:12 +01:00
|
|
|
ADD_LIBRARY(${dyn_libname} MODULE ${${engine}_SOURCES})
|
|
|
|
TARGET_LINK_LIBRARIES (${dyn_libname} mysqlservices mysqld)
|
2009-10-08 14:54:11 +02:00
|
|
|
IF(${engine}_LIBS)
|
|
|
|
TARGET_LINK_LIBRARIES(${dyn_libname} ${${engine}_LIBS})
|
|
|
|
ENDIF(${engine}_LIBS)
|
2010-06-28 16:05:34 +02:00
|
|
|
# Install the plugin
|
2011-01-29 18:51:12 +01:00
|
|
|
MYSQL_INSTALL_TARGETS(${dyn_libname} DESTINATION lib/plugin COMPONENT Server)
|
2009-06-10 10:59:49 +02:00
|
|
|
MESSAGE("build ${engine} as DLL")
|
|
|
|
ENDIF(${ENGINE_BUILD_TYPE} STREQUAL "STATIC")
|
|
|
|
ENDIF(NOT SOURCE_SUBLIBS)
|
|
|
|
ENDMACRO(MYSQL_STORAGE_ENGINE)
|