summaryrefslogtreecommitdiff
path: root/storage/sphinx/CMakeLists.txt
blob: e50ba74ba907ddd7f9c4755e15afaf531a6d57e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)