blob: b399470db02c5cce375a367595ea3b4338c1faa6 [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"
Damjan Marion312fb4d2021-05-06 20:48:34 +020018 "SOURCES;API_FILES;MULTIARCH_SOURCES;MULTIARCH_FORCE_ON;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)
Ole Troan7d527a22020-12-02 14:19:49 +010037 list(APPEND api_includes ${f}.h ${f}_enum.h ${f}_types.h ${f}.json)
Damjan Marion43b06062018-08-29 22:20:45 +020038 install(
Ole Troan7d527a22020-12-02 14:19:49 +010039 FILES
40 ${CMAKE_CURRENT_BINARY_DIR}/${f}.h
Dave Barach983ebaa2019-11-01 16:24:41 -040041 ${CMAKE_CURRENT_BINARY_DIR}/${f}_enum.h
42 ${CMAKE_CURRENT_BINARY_DIR}/${f}_types.h
Damjan Marion43b06062018-08-29 22:20:45 +020043 DESTINATION include/vpp_plugins/${name}/${dir}
Damjan Marioneeadc142018-09-13 20:02:12 +020044 COMPONENT ${PLUGIN_DEV_COMPONENT}
Damjan Marion43b06062018-08-29 22:20:45 +020045 )
Damjan Mariond16004d2018-08-26 10:14:52 +020046 endforeach()
Ole Troan7d527a22020-12-02 14:19:49 +010047 add_library(${plugin_name} SHARED ${api_includes} ${PLUGIN_SOURCES})
Damjan Marion0d39cba2021-05-10 14:51:44 +020048 target_compile_options(${plugin_name} PUBLIC ${VPP_DEFAULT_MARCH_FLAGS})
Damjan Marion06555052019-01-22 09:11:50 +010049 set_target_properties(${plugin_name} PROPERTIES NO_SONAME 1)
Damjan Marion931c6f52020-10-17 13:33:32 +020050 target_compile_options(${plugin_name} PRIVATE "-fvisibility=hidden")
Damjan Marion066cd812020-11-05 17:55:53 +010051 target_compile_options (${plugin_name} PRIVATE "-ffunction-sections")
52 target_compile_options (${plugin_name} PRIVATE "-fdata-sections")
53 target_link_libraries (${plugin_name} "-Wl,--gc-sections")
Aloys Augustin2a658042020-10-13 15:43:00 +020054 set(deps "")
Damjan Marion0fa900e2018-09-12 12:12:36 +020055 if(NOT VPP_EXTERNAL_PROJECT)
Aloys Augustin2a658042020-10-13 15:43:00 +020056 list(APPEND deps vpp_version_h api_headers)
Damjan Marion0fa900e2018-09-12 12:12:36 +020057 endif()
Ole Troan7d527a22020-12-02 14:19:49 +010058 if(PLUGIN_API_FILES)
59 list(APPEND deps ${plugin_name}_api_headers)
60 endif()
Ruslan Babayev05bc31b2020-12-23 01:08:38 -080061 if(deps)
62 add_dependencies(${plugin_name} ${deps})
63 endif()
Damjan Mariond16004d2018-08-26 10:14:52 +020064 set_target_properties(${plugin_name} PROPERTIES
65 PREFIX ""
66 LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_plugins)
67 if(PLUGIN_MULTIARCH_SOURCES)
Damjan Marion312fb4d2021-05-06 20:48:34 +020068 vpp_library_set_multiarch_sources(${plugin_name}
69 SOURCES ${PLUGIN_MULTIARCH_SOURCES}
70 DEPENDS ${deps}
71 FORCE_ON ${PLUGIN_MULTIARCH_FORCE_ON}
72 )
Damjan Mariond16004d2018-08-26 10:14:52 +020073 endif()
74 if(PLUGIN_LINK_LIBRARIES)
75 target_link_libraries(${plugin_name} ${PLUGIN_LINK_LIBRARIES})
76 endif()
77 if(PLUGIN_LINK_FLAGS)
78 set_target_properties(${plugin_name} PROPERTIES LINK_FLAGS "${PLUGIN_LINK_FLAGS}")
79 endif()
Mohsin Kazmif8520152018-08-27 16:11:59 +020080 if(PLUGIN_INSTALL_HEADERS)
81 foreach(file ${PLUGIN_INSTALL_HEADERS})
82 get_filename_component(dir ${file} DIRECTORY)
Damjan Marion43b06062018-08-29 22:20:45 +020083 install(
84 FILES ${file}
85 DESTINATION include/vpp_plugins/${name}/${dir}
86 COMPONENT vpp-dev
87 )
Mohsin Kazmif8520152018-08-27 16:11:59 +020088 endforeach()
89 endif()
Damjan Mariond16004d2018-08-26 10:14:52 +020090 if(PLUGIN_API_TEST_SOURCES)
91 set(test_plugin_name ${name}_test_plugin)
Damjan Marion0fa900e2018-09-12 12:12:36 +020092 add_library(${test_plugin_name} SHARED ${PLUGIN_API_TEST_SOURCES}
93 ${api_includes})
Damjan Marion0d39cba2021-05-10 14:51:44 +020094 target_compile_options(${test_plugin_name} PUBLIC ${VPP_DEFAULT_MARCH_FLAGS})
Damjan Marion06555052019-01-22 09:11:50 +010095 set_target_properties(${test_plugin_name} PROPERTIES NO_SONAME 1)
Damjan Marion0fa900e2018-09-12 12:12:36 +020096 if(NOT VPP_EXTERNAL_PROJECT)
97 add_dependencies(${test_plugin_name} api_headers)
98 endif()
Ole Troan7d527a22020-12-02 14:19:49 +010099 if(PLUGIN_API_FILES)
100 add_dependencies(${test_plugin_name} ${plugin_name}_api_headers)
101 endif()
Damjan Mariond16004d2018-08-26 10:14:52 +0200102 set_target_properties(${test_plugin_name} PROPERTIES
103 PREFIX ""
104 LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_api_test_plugins)
Damjan Marion43b06062018-08-29 22:20:45 +0200105 install(
106 TARGETS ${test_plugin_name}
Damjan Marion599efc62020-05-07 16:49:45 +0200107 DESTINATION ${VPP_LIBRARY_DIR}/vpp_api_test_plugins
Damjan Marion43b06062018-08-29 22:20:45 +0200108 COMPONENT ${PLUGIN_COMPONENT}
109 )
Damjan Mariond16004d2018-08-26 10:14:52 +0200110 endif()
Ole Troandf87f802020-11-18 19:17:48 +0100111 if (PLUGIN_API_FILES)
112 add_vpp_test_library(${name}_test_plugin ${PLUGIN_API_FILES})
113 endif()
114
Damjan Marion43b06062018-08-29 22:20:45 +0200115 install(
116 TARGETS ${plugin_name}
Damjan Marion599efc62020-05-07 16:49:45 +0200117 DESTINATION ${VPP_LIBRARY_DIR}/vpp_plugins
Damjan Marion43b06062018-08-29 22:20:45 +0200118 COMPONENT ${PLUGIN_COMPONENT}
119 )
Damjan Mariond16004d2018-08-26 10:14:52 +0200120endmacro()
Damjan Marion9fd24792019-03-28 20:54:47 +0100121
122macro(vpp_plugin_find_library plugin var name)
123 find_library(${var} NAMES ${name} ${ARGN})
Damjan Marion3648d932021-04-30 20:27:53 +0200124 mark_as_advanced(${var})
Damjan Marion9fd24792019-03-28 20:54:47 +0100125if (NOT ${var})
126 message(WARNING "-- ${name} library not found - ${plugin} plugin disabled")
127 return()
128endif()
129 message(STATUS "${plugin} plugin needs ${name} library - found at ${${var}}")
130endmacro()