blob: af3033f0cbd7870d7a6d0fa860c124b1f4db163b [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
Damjan Marion4c64b6e2018-08-26 18:14:46 +020034 file(RELATIVE_PATH rpath ${CMAKE_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
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 Marion833de8c2018-09-07 12:39:02 +020037 vpp_generate_api_header(${f} plugins ${PLUGIN_COMPONENT})
Damjan Marion0fa900e2018-09-12 12:12:36 +020038 list(APPEND api_includes ${f}.h ${f}.json)
Damjan Marion4c64b6e2018-08-26 18:14:46 +020039 set_property(GLOBAL APPEND PROPERTY VPP_API_FILES ${rpath}/${f})
Damjan Marion43b06062018-08-29 22:20:45 +020040 install(
41 FILES ${CMAKE_CURRENT_BINARY_DIR}/${f}.h
42 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 Marion64627422018-08-28 12:33:52 +020047 target_compile_options(${plugin_name} PRIVATE -Wall)
Damjan Marion0fa900e2018-09-12 12:12:36 +020048 if(NOT VPP_EXTERNAL_PROJECT)
49 add_dependencies(${plugin_name} vpp_version_h api_headers)
50 endif()
Damjan Mariond16004d2018-08-26 10:14:52 +020051 set_target_properties(${plugin_name} PROPERTIES
52 PREFIX ""
53 LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_plugins)
54 if(PLUGIN_MULTIARCH_SOURCES)
55 vpp_library_set_multiarch_sources(${plugin_name} ${PLUGIN_MULTIARCH_SOURCES})
56 endif()
57 if(PLUGIN_LINK_LIBRARIES)
58 target_link_libraries(${plugin_name} ${PLUGIN_LINK_LIBRARIES})
59 endif()
60 if(PLUGIN_LINK_FLAGS)
61 set_target_properties(${plugin_name} PROPERTIES LINK_FLAGS "${PLUGIN_LINK_FLAGS}")
62 endif()
Mohsin Kazmif8520152018-08-27 16:11:59 +020063 if(PLUGIN_INSTALL_HEADERS)
64 foreach(file ${PLUGIN_INSTALL_HEADERS})
65 get_filename_component(dir ${file} DIRECTORY)
Damjan Marion43b06062018-08-29 22:20:45 +020066 install(
67 FILES ${file}
68 DESTINATION include/vpp_plugins/${name}/${dir}
69 COMPONENT vpp-dev
70 )
Mohsin Kazmif8520152018-08-27 16:11:59 +020071 endforeach()
72 endif()
Damjan Mariond16004d2018-08-26 10:14:52 +020073 if(PLUGIN_API_TEST_SOURCES)
74 set(test_plugin_name ${name}_test_plugin)
Damjan Marion0fa900e2018-09-12 12:12:36 +020075 add_library(${test_plugin_name} SHARED ${PLUGIN_API_TEST_SOURCES}
76 ${api_includes})
77 if(NOT VPP_EXTERNAL_PROJECT)
78 add_dependencies(${test_plugin_name} api_headers)
79 endif()
Damjan Mariond16004d2018-08-26 10:14:52 +020080 set_target_properties(${test_plugin_name} PROPERTIES
81 PREFIX ""
82 LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_api_test_plugins)
Damjan Marion43b06062018-08-29 22:20:45 +020083 install(
84 TARGETS ${test_plugin_name}
Damjan Marion79dcbc72018-09-12 14:01:10 +020085 DESTINATION lib/vpp_api_test_plugins
Damjan Marion43b06062018-08-29 22:20:45 +020086 COMPONENT ${PLUGIN_COMPONENT}
87 )
Damjan Mariond16004d2018-08-26 10:14:52 +020088 endif()
Damjan Marion43b06062018-08-29 22:20:45 +020089 install(
90 TARGETS ${plugin_name}
Damjan Marion79dcbc72018-09-12 14:01:10 +020091 DESTINATION lib/vpp_plugins
Damjan Marion43b06062018-08-29 22:20:45 +020092 COMPONENT ${PLUGIN_COMPONENT}
93 )
Damjan Mariond16004d2018-08-26 10:14:52 +020094endmacro()