mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
46fc864b90
Returned accidentally removed undefinition of MYSQL_SERVER in net_serv.cc inside embedded server (embedded server uses real_net_read/write only as a client) Prevented attempt to clean up embedded server if it was not initialized
20 lines
559 B
CMake
20 lines
559 B
CMake
|
|
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include
|
|
${CMAKE_SOURCE_DIR}/libmysqld/include
|
|
${PCRE_INCLUDES}
|
|
${CMAKE_SOURCE_DIR}/sql
|
|
${MY_READLINE_INCLUDE_DIR}
|
|
)
|
|
|
|
|
|
ADD_DEFINITIONS(-DEMBEDDED_LIBRARY -UMYSQL_CLIENT)
|
|
|
|
|
|
MYSQL_ADD_EXECUTABLE(test-connect-t test-connect.cc
|
|
COMPONENT Test)
|
|
TARGET_LINK_LIBRARIES(test-connect-t mysqlserver )
|
|
MY_ADD_TEST(test-connect)
|
|
|
|
IF(UNIX)
|
|
SET_TARGET_PROPERTIES(test-connect-t PROPERTIES ENABLE_EXPORTS TRUE)
|
|
ENDIF()
|