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" |
Mohsin Kazmi | f852015 | 2018-08-27 16:11:59 +0200 | [diff] [blame] | 18 | "SOURCES;API_FILES;MULTIARCH_SOURCES;LINK_LIBRARIES;INSTALL_HEADERS;API_TEST_SOURCES" |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 19 | ${ARGN} |
| 20 | ) |
| 21 | set(plugin_name ${name}_plugin) |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 22 | set(api_includes) |
Damjan Marion | 833de8c | 2018-09-07 12:39:02 +0200 | [diff] [blame] | 23 | if(NOT PLUGIN_COMPONENT) |
Damjan Marion | 4d2f86a | 2019-01-18 13:28:22 +0100 | [diff] [blame] | 24 | set(PLUGIN_COMPONENT vpp-plugin-core) |
Damjan Marion | 833de8c | 2018-09-07 12:39:02 +0200 | [diff] [blame] | 25 | endif() |
Damjan Marion | eeadc14 | 2018-09-13 20:02:12 +0200 | [diff] [blame] | 26 | 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 Giles | dc20371 | 2019-12-05 23:37:36 +0200 | [diff] [blame] | 34 | vpp_add_api_files(${plugin_name} plugins ${PLUGIN_COMPONENT} ${PLUGIN_API_FILES}) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 35 | foreach(f ${PLUGIN_API_FILES}) |
Mohsin Kazmi | f852015 | 2018-08-27 16:11:59 +0200 | [diff] [blame] | 36 | get_filename_component(dir ${f} DIRECTORY) |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 37 | list(APPEND api_includes ${f}.h ${f}.json) |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 38 | install( |
| 39 | FILES ${CMAKE_CURRENT_BINARY_DIR}/${f}.h |
Dave Barach | 983ebaa | 2019-11-01 16:24:41 -0400 | [diff] [blame] | 40 | ${CMAKE_CURRENT_BINARY_DIR}/${f}_enum.h |
| 41 | ${CMAKE_CURRENT_BINARY_DIR}/${f}_types.h |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 42 | DESTINATION include/vpp_plugins/${name}/${dir} |
Damjan Marion | eeadc14 | 2018-09-13 20:02:12 +0200 | [diff] [blame] | 43 | COMPONENT ${PLUGIN_DEV_COMPONENT} |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 44 | ) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 45 | endforeach() |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 46 | add_library(${plugin_name} SHARED ${PLUGIN_SOURCES} ${api_includes}) |
Damjan Marion | 0655505 | 2019-01-22 09:11:50 +0100 | [diff] [blame] | 47 | set_target_properties(${plugin_name} PROPERTIES NO_SONAME 1) |
Damjan Marion | 931c6f5 | 2020-10-17 13:33:32 +0200 | [diff] [blame^] | 48 | target_compile_options(${plugin_name} PRIVATE "-fvisibility=hidden") |
Aloys Augustin | 2a65804 | 2020-10-13 15:43:00 +0200 | [diff] [blame] | 49 | set(deps "") |
Oliver Giles | dc20371 | 2019-12-05 23:37:36 +0200 | [diff] [blame] | 50 | if(PLUGIN_API_FILES) |
Aloys Augustin | 2a65804 | 2020-10-13 15:43:00 +0200 | [diff] [blame] | 51 | list(APPEND deps ${plugin_name}_api_headers) |
Oliver Giles | dc20371 | 2019-12-05 23:37:36 +0200 | [diff] [blame] | 52 | endif() |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 53 | if(NOT VPP_EXTERNAL_PROJECT) |
Aloys Augustin | 2a65804 | 2020-10-13 15:43:00 +0200 | [diff] [blame] | 54 | list(APPEND deps vpp_version_h api_headers) |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 55 | endif() |
Aloys Augustin | 2a65804 | 2020-10-13 15:43:00 +0200 | [diff] [blame] | 56 | add_dependencies(${plugin_name} ${deps}) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 57 | set_target_properties(${plugin_name} PROPERTIES |
| 58 | PREFIX "" |
| 59 | LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_plugins) |
| 60 | if(PLUGIN_MULTIARCH_SOURCES) |
Aloys Augustin | 2a65804 | 2020-10-13 15:43:00 +0200 | [diff] [blame] | 61 | vpp_library_set_multiarch_sources(${plugin_name} "${deps}" ${PLUGIN_MULTIARCH_SOURCES}) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 62 | endif() |
| 63 | if(PLUGIN_LINK_LIBRARIES) |
| 64 | target_link_libraries(${plugin_name} ${PLUGIN_LINK_LIBRARIES}) |
| 65 | endif() |
| 66 | if(PLUGIN_LINK_FLAGS) |
| 67 | set_target_properties(${plugin_name} PROPERTIES LINK_FLAGS "${PLUGIN_LINK_FLAGS}") |
| 68 | endif() |
Mohsin Kazmi | f852015 | 2018-08-27 16:11:59 +0200 | [diff] [blame] | 69 | if(PLUGIN_INSTALL_HEADERS) |
| 70 | foreach(file ${PLUGIN_INSTALL_HEADERS}) |
| 71 | get_filename_component(dir ${file} DIRECTORY) |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 72 | install( |
| 73 | FILES ${file} |
| 74 | DESTINATION include/vpp_plugins/${name}/${dir} |
| 75 | COMPONENT vpp-dev |
| 76 | ) |
Mohsin Kazmi | f852015 | 2018-08-27 16:11:59 +0200 | [diff] [blame] | 77 | endforeach() |
| 78 | endif() |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 79 | if(PLUGIN_API_TEST_SOURCES) |
| 80 | set(test_plugin_name ${name}_test_plugin) |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 81 | add_library(${test_plugin_name} SHARED ${PLUGIN_API_TEST_SOURCES} |
| 82 | ${api_includes}) |
Damjan Marion | 0655505 | 2019-01-22 09:11:50 +0100 | [diff] [blame] | 83 | set_target_properties(${test_plugin_name} PROPERTIES NO_SONAME 1) |
Tom Seidenberg | 99151bd | 2020-06-17 17:31:44 -0400 | [diff] [blame] | 84 | if(PLUGIN_API_FILES) |
| 85 | add_dependencies(${test_plugin_name} ${plugin_name}_api_headers) |
| 86 | endif() |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 87 | if(NOT VPP_EXTERNAL_PROJECT) |
| 88 | add_dependencies(${test_plugin_name} api_headers) |
| 89 | endif() |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 90 | set_target_properties(${test_plugin_name} PROPERTIES |
| 91 | PREFIX "" |
| 92 | LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_api_test_plugins) |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 93 | install( |
| 94 | TARGETS ${test_plugin_name} |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 95 | DESTINATION ${VPP_LIBRARY_DIR}/vpp_api_test_plugins |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 96 | COMPONENT ${PLUGIN_COMPONENT} |
| 97 | ) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 98 | endif() |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 99 | install( |
| 100 | TARGETS ${plugin_name} |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 101 | DESTINATION ${VPP_LIBRARY_DIR}/vpp_plugins |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 102 | COMPONENT ${PLUGIN_COMPONENT} |
| 103 | ) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 104 | endmacro() |
Damjan Marion | 9fd2479 | 2019-03-28 20:54:47 +0100 | [diff] [blame] | 105 | |
| 106 | macro(vpp_plugin_find_library plugin var name) |
| 107 | find_library(${var} NAMES ${name} ${ARGN}) |
| 108 | if (NOT ${var}) |
| 109 | message(WARNING "-- ${name} library not found - ${plugin} plugin disabled") |
| 110 | return() |
| 111 | endif() |
| 112 | message(STATUS "${plugin} plugin needs ${name} library - found at ${${var}}") |
| 113 | endmacro() |