Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 1 | # 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 | |
| 14 | macro(add_vpp_plugin name) |
| 15 | cmake_parse_arguments(PLUGIN |
| 16 | "" |
Damjan Marion | eeadc14 | 2018-09-13 20:02:12 +0200 | [diff] [blame] | 17 | "LINK_FLAGS;COMPONENT;DEV_COMPONENT" |
Damjan Marion | 8799bf6 | 2024-03-15 19:03:41 +0000 | [diff] [blame] | 18 | "SOURCES;API_FILES;MULTIARCH_SOURCES;MULTIARCH_FORCE_ON;LINK_LIBRARIES;INSTALL_HEADERS;API_TEST_SOURCES;VAT_AUTO_TEST;SUPPORTED_OS_LIST" |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 19 | ${ARGN} |
| 20 | ) |
Damjan Marion | 8799bf6 | 2024-03-15 19:03:41 +0000 | [diff] [blame] | 21 | if (PLUGIN_SUPPORTED_OS_LIST AND NOT ${CMAKE_SYSTEM_NAME} IN_LIST PLUGIN_SUPPORTED_OS_LIST) |
| 22 | message(WARNING "unsupported OS - ${name} plugin disabled") |
| 23 | return() |
| 24 | endif() |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 25 | set(plugin_name ${name}_plugin) |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 26 | set(api_includes) |
Damjan Marion | 833de8c | 2018-09-07 12:39:02 +0200 | [diff] [blame] | 27 | if(NOT PLUGIN_COMPONENT) |
Damjan Marion | 4d2f86a | 2019-01-18 13:28:22 +0100 | [diff] [blame] | 28 | set(PLUGIN_COMPONENT vpp-plugin-core) |
Damjan Marion | 833de8c | 2018-09-07 12:39:02 +0200 | [diff] [blame] | 29 | endif() |
Damjan Marion | eeadc14 | 2018-09-13 20:02:12 +0200 | [diff] [blame] | 30 | if(NOT PLUGIN_DEV_COMPONENT) |
| 31 | if(NOT VPP_EXTERNAL_PROJECT) |
| 32 | set(PLUGIN_DEV_COMPONENT vpp-dev) |
| 33 | else() |
| 34 | set(PLUGIN_DEV_COMPONENT ${PLUGIN_COMPONENT}-dev) |
| 35 | endif() |
| 36 | endif() |
| 37 | |
Oliver Giles | dc20371 | 2019-12-05 23:37:36 +0200 | [diff] [blame] | 38 | vpp_add_api_files(${plugin_name} plugins ${PLUGIN_COMPONENT} ${PLUGIN_API_FILES}) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 39 | foreach(f ${PLUGIN_API_FILES}) |
Mohsin Kazmi | f852015 | 2018-08-27 16:11:59 +0200 | [diff] [blame] | 40 | get_filename_component(dir ${f} DIRECTORY) |
Ole Troan | 7d527a2 | 2020-12-02 14:19:49 +0100 | [diff] [blame] | 41 | list(APPEND api_includes ${f}.h ${f}_enum.h ${f}_types.h ${f}.json) |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 42 | install( |
Ole Troan | 7d527a2 | 2020-12-02 14:19:49 +0100 | [diff] [blame] | 43 | FILES |
| 44 | ${CMAKE_CURRENT_BINARY_DIR}/${f}.h |
Dave Barach | 983ebaa | 2019-11-01 16:24:41 -0400 | [diff] [blame] | 45 | ${CMAKE_CURRENT_BINARY_DIR}/${f}_enum.h |
| 46 | ${CMAKE_CURRENT_BINARY_DIR}/${f}_types.h |
Wim de With | f521df7 | 2024-01-28 11:05:15 +0100 | [diff] [blame^] | 47 | DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/vpp_plugins/${name}/${dir} |
Damjan Marion | eeadc14 | 2018-09-13 20:02:12 +0200 | [diff] [blame] | 48 | COMPONENT ${PLUGIN_DEV_COMPONENT} |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 49 | ) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 50 | endforeach() |
Ole Troan | 7d527a2 | 2020-12-02 14:19:49 +0100 | [diff] [blame] | 51 | add_library(${plugin_name} SHARED ${api_includes} ${PLUGIN_SOURCES}) |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 52 | target_compile_options(${plugin_name} PUBLIC ${VPP_DEFAULT_MARCH_FLAGS}) |
Damjan Marion | 0655505 | 2019-01-22 09:11:50 +0100 | [diff] [blame] | 53 | set_target_properties(${plugin_name} PROPERTIES NO_SONAME 1) |
Damjan Marion | 931c6f5 | 2020-10-17 13:33:32 +0200 | [diff] [blame] | 54 | target_compile_options(${plugin_name} PRIVATE "-fvisibility=hidden") |
Damjan Marion | 066cd81 | 2020-11-05 17:55:53 +0100 | [diff] [blame] | 55 | target_compile_options (${plugin_name} PRIVATE "-ffunction-sections") |
| 56 | target_compile_options (${plugin_name} PRIVATE "-fdata-sections") |
| 57 | target_link_libraries (${plugin_name} "-Wl,--gc-sections") |
Aloys Augustin | 2a65804 | 2020-10-13 15:43:00 +0200 | [diff] [blame] | 58 | set(deps "") |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 59 | if(NOT VPP_EXTERNAL_PROJECT) |
Aloys Augustin | 2a65804 | 2020-10-13 15:43:00 +0200 | [diff] [blame] | 60 | list(APPEND deps vpp_version_h api_headers) |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 61 | endif() |
Ole Troan | 7d527a2 | 2020-12-02 14:19:49 +0100 | [diff] [blame] | 62 | if(PLUGIN_API_FILES) |
| 63 | list(APPEND deps ${plugin_name}_api_headers) |
| 64 | endif() |
Ruslan Babayev | 05bc31b | 2020-12-23 01:08:38 -0800 | [diff] [blame] | 65 | if(deps) |
| 66 | add_dependencies(${plugin_name} ${deps}) |
| 67 | endif() |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 68 | set_target_properties(${plugin_name} PROPERTIES |
| 69 | PREFIX "" |
| 70 | LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_plugins) |
| 71 | if(PLUGIN_MULTIARCH_SOURCES) |
Damjan Marion | 312fb4d | 2021-05-06 20:48:34 +0200 | [diff] [blame] | 72 | vpp_library_set_multiarch_sources(${plugin_name} |
| 73 | SOURCES ${PLUGIN_MULTIARCH_SOURCES} |
| 74 | DEPENDS ${deps} |
| 75 | FORCE_ON ${PLUGIN_MULTIARCH_FORCE_ON} |
| 76 | ) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 77 | endif() |
| 78 | if(PLUGIN_LINK_LIBRARIES) |
| 79 | target_link_libraries(${plugin_name} ${PLUGIN_LINK_LIBRARIES}) |
| 80 | endif() |
| 81 | if(PLUGIN_LINK_FLAGS) |
| 82 | set_target_properties(${plugin_name} PROPERTIES LINK_FLAGS "${PLUGIN_LINK_FLAGS}") |
| 83 | endif() |
Mohsin Kazmi | f852015 | 2018-08-27 16:11:59 +0200 | [diff] [blame] | 84 | if(PLUGIN_INSTALL_HEADERS) |
| 85 | foreach(file ${PLUGIN_INSTALL_HEADERS}) |
| 86 | get_filename_component(dir ${file} DIRECTORY) |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 87 | install( |
| 88 | FILES ${file} |
Wim de With | f521df7 | 2024-01-28 11:05:15 +0100 | [diff] [blame^] | 89 | DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/vpp_plugins/${name}/${dir} |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 90 | COMPONENT vpp-dev |
| 91 | ) |
Mohsin Kazmi | f852015 | 2018-08-27 16:11:59 +0200 | [diff] [blame] | 92 | endforeach() |
| 93 | endif() |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 94 | if(PLUGIN_API_TEST_SOURCES) |
| 95 | set(test_plugin_name ${name}_test_plugin) |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 96 | add_library(${test_plugin_name} SHARED ${PLUGIN_API_TEST_SOURCES} |
| 97 | ${api_includes}) |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 98 | target_compile_options(${test_plugin_name} PUBLIC ${VPP_DEFAULT_MARCH_FLAGS}) |
Damjan Marion | 0655505 | 2019-01-22 09:11:50 +0100 | [diff] [blame] | 99 | set_target_properties(${test_plugin_name} PROPERTIES NO_SONAME 1) |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 100 | if(NOT VPP_EXTERNAL_PROJECT) |
| 101 | add_dependencies(${test_plugin_name} api_headers) |
| 102 | endif() |
Ole Troan | 7d527a2 | 2020-12-02 14:19:49 +0100 | [diff] [blame] | 103 | if(PLUGIN_API_FILES) |
| 104 | add_dependencies(${test_plugin_name} ${plugin_name}_api_headers) |
| 105 | endif() |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 106 | set_target_properties(${test_plugin_name} PROPERTIES |
| 107 | PREFIX "" |
| 108 | LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_api_test_plugins) |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 109 | install( |
| 110 | TARGETS ${test_plugin_name} |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 111 | DESTINATION ${VPP_LIBRARY_DIR}/vpp_api_test_plugins |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 112 | COMPONENT ${PLUGIN_COMPONENT} |
| 113 | ) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 114 | endif() |
Ole Troan | ad92743 | 2023-04-26 10:08:59 +0200 | [diff] [blame] | 115 | if (PLUGIN_API_FILES AND NOT PLUGIN_VAT_AUTO_TEST STREQUAL OFF) |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 116 | add_vpp_test_library(${name}_test_plugin ${PLUGIN_API_FILES}) |
| 117 | endif() |
| 118 | |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 119 | install( |
| 120 | TARGETS ${plugin_name} |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 121 | DESTINATION ${VPP_LIBRARY_DIR}/vpp_plugins |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 122 | COMPONENT ${PLUGIN_COMPONENT} |
| 123 | ) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 124 | endmacro() |
Damjan Marion | 9fd2479 | 2019-03-28 20:54:47 +0100 | [diff] [blame] | 125 | |
| 126 | macro(vpp_plugin_find_library plugin var name) |
| 127 | find_library(${var} NAMES ${name} ${ARGN}) |
Damjan Marion | 3648d93 | 2021-04-30 20:27:53 +0200 | [diff] [blame] | 128 | mark_as_advanced(${var}) |
Damjan Marion | 9fd2479 | 2019-03-28 20:54:47 +0100 | [diff] [blame] | 129 | if (NOT ${var}) |
| 130 | message(WARNING "-- ${name} library not found - ${plugin} plugin disabled") |
| 131 | return() |
| 132 | endif() |
| 133 | message(STATUS "${plugin} plugin needs ${name} library - found at ${${var}}") |
| 134 | endmacro() |