# Copyright (c) 2016, 2020, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0,
# as published by the Free Software Foundation.
#
# This program is also distributed with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms,
# as designated in a particular file or component or in included license
# documentation.  The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have included with MySQL.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

INCLUDE(GenerateExportHeader)

SET(SOURCE_FILES
  src/handshake_packet.cc
  src/error_packet.cc
  src/base_packet.cc
  )

SET(include_dirs
  include
  ${CMAKE_CURRENT_BINARY_DIR}/include/
  )

add_harness_plugin(mysql_protocol
  SOURCES ${SOURCE_FILES}
  REQUIRES router_lib
  DESTINATION "${ROUTER_INSTALL_PLUGINDIR}"
  )

TARGET_INCLUDE_DIRECTORIES(mysql_protocol PUBLIC ${include_dirs})
GENERATE_EXPORT_HEADER(mysql_protocol
  EXPORT_FILE_NAME
  ${CMAKE_CURRENT_BINARY_DIR}/include/mysqlrouter/mysql_protocol_export.h
  )

IF(WITH_UNIT_TESTS AND GMOCK_FOUND)
  ADD_LIBRARY(mysql_protocol_static STATIC ${SOURCE_FILES})
  TARGET_LINK_LIBRARIES(mysql_protocol_static router_lib)
  TARGET_COMPILE_DEFINITIONS(mysql_protocol_static PUBLIC -DMYSQL_PROTOCOL_STATIC_DEFINE=1)
  TARGET_INCLUDE_DIRECTORIES(mysql_protocol_static PUBLIC ${include_dirs})
  ## make sure mysql_protocol_export.h is created early enough
  ADD_DEPENDENCIES(mysql_protocol_static mysql_protocol)

  ADD_SUBDIRECTORY(tests/)
ENDIF()
