77 lines
2.3 KiB
CMake
77 lines
2.3 KiB
CMake
# Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
#
|
|
# 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, version 2.0, 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
|
|
|
|
SET(protoc_plugin_SRC
|
|
message_field_chain.cc
|
|
messages_used_by_server.cc
|
|
xprotocol_plugin.cc
|
|
)
|
|
|
|
INCLUDE_DIRECTORIES(
|
|
${MYSQLX_GENERATE_DIR}
|
|
)
|
|
|
|
ADD_COMPILE_FLAGS(${protoc_plugin_SRC}
|
|
COMPILE_FLAGS "${MYSQLX_PROTOCOL_FLAGS}"
|
|
)
|
|
|
|
MY_INCLUDE_SYSTEM_DIRECTORIES(PROTOBUF)
|
|
|
|
MYSQL_ADD_EXECUTABLE(
|
|
xprotocol_plugin
|
|
${protoc_plugin_SRC}
|
|
SKIP_INSTALL
|
|
)
|
|
|
|
TARGET_LINK_LIBRARIES(
|
|
xprotocol_plugin
|
|
${MYSQLX_PROTOCOL_FULL_LIB}
|
|
${PROTOBUF_PROTOC_LIBRARY}
|
|
${PROTOBUF_LIBRARY}
|
|
)
|
|
|
|
SET(PROTOC_PLUGIN_GENERATED_HDR
|
|
"xprotocol_tags.h"
|
|
)
|
|
|
|
ADD_CUSTOM_COMMAND(
|
|
OUTPUT "${MYSQLX_GENERATE_DIR}/${PROTOC_PLUGIN_GENERATED_HDR}"
|
|
COMMAND ${PROTOBUF_PROTOC_EXECUTABLE}
|
|
ARGS --plugin=protoc-gen-yplg=$<TARGET_FILE:xprotocol_plugin>
|
|
--yplg_out "${MYSQLX_GENERATE_DIR}"
|
|
-I "${PROTOBUF_INCLUDE_DIR}"
|
|
-I "${MYSQLX_PROTOBUF_PROTO_DIR}"
|
|
${MYSQLX_PROTOBUF_PROTO_FILES}
|
|
DEPENDS
|
|
xprotocol_plugin
|
|
COMMENT "Running protocol buffer plugin on all 'proto' files"
|
|
VERBATIM
|
|
)
|
|
|
|
ADD_CUSTOM_TARGET(xprotocol_tags
|
|
DEPENDS
|
|
xprotocol_plugin
|
|
"${MYSQLX_GENERATE_DIR}/${PROTOC_PLUGIN_GENERATED_HDR}"
|
|
SOURCES
|
|
"${MYSQLX_GENERATE_DIR}/${PROTOC_PLUGIN_GENERATED_HDR}"
|
|
)
|