mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
53476abce8
fix a couple "initialization skipped by goto" and other new errors.
22 lines
632 B
CMake
22 lines
632 B
CMake
INCLUDE(CheckCCompilerFlag)
|
|
|
|
ADD_DEFINITIONS(-DMYSQL_SERVER)
|
|
|
|
MY_CHECK_AND_SET_COMPILER_FLAG("-Wno-write-strings")
|
|
|
|
IF(MSVC)
|
|
# Temporarily disable "conversion from size_t .." warnings
|
|
IF(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4267")
|
|
ENDIF()
|
|
# Disable warning about deprecated functions, inet_aton
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4996")
|
|
STRING(REPLACE "/permissive-" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" )
|
|
ENDIF()
|
|
|
|
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)
|