blob: 1bcff5559ffde91511f8cfc0437b93686f273cfd [file] [log] [blame]
Damjan Mariond16004d2018-08-26 10:14:52 +02001# Copyright (c) 2018 Cisco and/or its affiliates.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at:
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14macro(add_vpp_plugin name)
15 cmake_parse_arguments(PLUGIN
16 ""
Damjan Marioneeadc142018-09-13 20:02:12 +020017 "LINK_FLAGS;COMPONENT;DEV_COMPONENT"
Mohsin Kazmif8520152018-08-27 16:11:59 +020018 "SOURCES;API_FILES;MULTIARCH_SOURCES;LINK_LIBRARIES;INSTALL_HEADERS;API_TEST_SOURCES"
Damjan Mariond16004d2018-08-26 10:14:52 +020019 ${ARGN}
20 )
21 set(plugin_name ${name}_plugin)
Damjan Marion0fa900e2018-09-12 12:12:36 +020022 set(api_includes)
Damjan Marion833de8c2018-09-07 12:39:02 +020023 if(NOT PLUGIN_COMPONENT)
Damjan Marion4d2f86a2019-01-18 13:28:22 +010024 set(PLUGIN_COMPONENT vpp-plugin-core)
Damjan Marion833de8c2018-09-07 12:39:02 +020025 endif()
Damjan Marioneeadc142018-09-13 20:02:12 +020026 if(NOT PLUGIN_DEV_COMPONENT)
27 if(NOT VPP_EXTERNAL_PROJECT)
28 set(PLUGIN_DEV_COMPONENT vpp-dev)
29 else()
30 set(PLUGIN_DEV_COMPONENT ${PLUGIN_COMPONENT}-dev)
31 endif()
32 endif()
33
Oliver Gilesdc203712019-12-05 23:37:36 +020034 vpp_add_api_files(${plugin_name} plugins ${PLUGIN_COMPONENT} ${PLUGIN_API_FILES})
Damjan Mariond16004d2018-08-26 10:14:52 +020035 foreach(f ${PLUGIN_API_FILES})
Mohsin Kazmif8520152018-08-27 16:11:59 +020036 get_filename_component(dir ${f} DIRECTORY)
Damjan Marion0fa900e2018-09-12 12:12:36 +020037 list(APPEND api_includes ${f}.h ${f}.json)
Damjan Marion43b06062018-08-29 22:20:45 +020038 install(
39 FILES ${CMAKE_CURRENT_BINARY_DIR}/${f}.h
Dave Barach983ebaa2019-11-01 16:24:41 -040040 ${CMAKE_CURRENT_BINARY_DIR}/${f}_enum.h
41 ${CMAKE_CURRENT_BINARY_DIR}/${f}_types.h
Damjan Marion43b06062018-08-29 22:20:45 +020042 DESTINATION include/vpp_plugins/${name}/${dir}
Damjan Marioneeadc142018-09-13 20:02:12 +020043 COMPONENT ${PLUGIN_DEV_COMPONENT}
Damjan Marion43b06062018-08-29 22:20:45 +020044 )
Damjan Mariond16004d2018-08-26 10:14:52 +020045 endforeach()
Damjan Marion0fa900e2018-09-12 12:12:36 +020046 add_library(${plugin_name} SHARED ${PLUGIN_SOURCES} ${api_includes})
Damjan Marion06555052019-01-22 09:11:50 +010047 set_target_properties(${plugin_name} PROPERTIES NO_SONAME 1)
Aloys Augustin2a658042020-10-13 15:43:00 +020048 set(deps "")
Oliver Gilesdc203712019-12-05 23:37:36 +020049 if(PLUGIN_API_FILES)
Aloys Augustin2a658042020-10-13 15:43:00 +020050 list(APPEND deps ${plugin_name}_api_headers)
Oliver Gilesdc203712019-12-05 23:37:36 +020051 endif()
Damjan Marion0fa900e2018-09-12 12:12:36 +020052 if(NOT VPP_EXTERNAL_PROJECT)
Aloys Augustin2a658042020-10-13 15:43:00 +020053 list(APPEND deps vpp_version_h api_headers)
Damjan Marion0fa900e2018-09-12 12:12:36 +020054 endif()
Aloys Augustin2a658042020-10-13 15:43:00 +020055 add_dependencies(${plugin_name} ${deps})
Damjan Mariond16004d2018-08-26 10:14:52 +020056 set_target_properties(${plugin_name} PROPERTIES
57 PREFIX ""
58 LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_plugins)
59 if(PLUGIN_MULTIARCH_SOURCES)
Aloys Augustin2a658042020-10-13 15:43:00 +020060 vpp_library_set_multiarch_sources(${plugin_name} "${deps}" ${PLUGIN_MULTIARCH_SOURCES})
Damjan Mariond16004d2018-08-26 10:14:52 +020061 endif()
62 if(PLUGIN_LINK_LIBRARIES)
63 target_link_libraries(${plugin_name} ${PLUGIN_LINK_LIBRARIES})
64 endif()
65 if(PLUGIN_LINK_FLAGS)
66 set_target_properties(${plugin_name} PROPERTIES LINK_FLAGS "${PLUGIN_LINK_FLAGS}")
67 endif()
Mohsin Kazmif8520152018-08-27 16:11:59 +020068 if(PLUGIN_INSTALL_HEADERS)
69 foreach(file ${PLUGIN_INSTALL_HEADERS})
70 get_filename_component(dir ${file} DIRECTORY)
Damjan Marion43b06062018-08-29 22:20:45 +020071 install(
72 FILES ${file}
73 DESTINATION include/vpp_plugins/${name}/${dir}
74 COMPONENT vpp-dev
75 )
Mohsin Kazmif8520152018-08-27 16:11:59 +020076 endforeach()
77 endif()
Damjan Mariond16004d2018-08-26 10:14:52 +020078 if(PLUGIN_API_TEST_SOURCES)
79 set(test_plugin_name ${name}_test_plugin)
Damjan Marion0fa900e2018-09-12 12:12:36 +020080 add_library(${test_plugin_name} SHARED ${PLUGIN_API_TEST_SOURCES}
81 ${api_includes})
Damjan Marion06555052019-01-22 09:11:50 +010082 set_target_properties(${test_plugin_name} PROPERTIES NO_SONAME 1)
Tom Seidenberg99151bd2020-06-17 17:31:44 -040083 if(PLUGIN_API_FILES)
84 add_dependencies(${test_plugin_name} ${plugin_name}_api_headers)
85 endif()
Damjan Marion0fa900e2018-09-12 12:12:36 +020086 if(NOT VPP_EXTERNAL_PROJECT)
87 add_dependencies(${test_plugin_name} api_headers)
88 endif()
Damjan Mariond16004d2018-08-26 10:14:52 +020089 set_target_properties(${test_plugin_name} PROPERTIES
90 PREFIX ""
91 LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_api_test_plugins)
Damjan Marion43b06062018-08-29 22:20:45 +020092 install(
93 TARGETS ${test_plugin_name}
Damjan Marion599efc62020-05-07 16:49:45 +020094 DESTINATION ${VPP_LIBRARY_DIR}/vpp_api_test_plugins
Damjan Marion43b06062018-08-29 22:20:45 +020095 COMPONENT ${PLUGIN_COMPONENT}
96 )
Damjan Mariond16004d2018-08-26 10:14:52 +020097 endif()
Damjan Marion43b06062018-08-29 22:20:45 +020098 install(
99 TARGETS ${plugin_name}
Damjan Marion599efc62020-05-07 16:49:45 +0200100 DESTINATION ${VPP_LIBRARY_DIR}/vpp_plugins
Damjan Marion43b06062018-08-29 22:20:45 +0200101 COMPONENT ${PLUGIN_COMPONENT}
102 )
Damjan Mariond16004d2018-08-26 10:14:52 +0200103endmacro()
Damjan Marion9fd24792019-03-28 20:54:47 +0100104
105macro(vpp_plugin_find_library plugin var name)
106 find_library(${var} NAMES ${name} ${ARGN})
107if (NOT ${var})
108 message(WARNING "-- ${name} library not found - ${plugin} plugin disabled")
109 return()
110endif()
111 message(STATUS "${plugin} plugin needs ${name} library - found at ${${var}}")
112endmacro()