mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
12 lines
270 B
CMake
12 lines
270 B
CMake
INCLUDE(CheckCCompilerFlag)
|
|
|
|
ADD_DEFINITIONS(-DMYSQL_SERVER)
|
|
|
|
MY_CHECK_AND_SET_COMPILER_FLAG("-Wno-write-strings")
|
|
|
|
IF(MSVC)
|
|
LINK_LIBRARIES(ws2_32)
|
|
ENDIF(MSVC)
|
|
|
|
SET(SPHINX_SOURCES ha_sphinx.cc snippets_udf.cc)
|
|
MYSQL_ADD_PLUGIN(sphinx ${SPHINX_SOURCES} STORAGE_ENGINE)
|