Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +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_library lib) |
| 15 | cmake_parse_arguments(ARG |
Damjan Marion | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 16 | "LTO" |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 17 | "COMPONENT" |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 18 | "SOURCES;MULTIARCH_SOURCES;API_FILES;LINK_LIBRARIES;INSTALL_HEADERS;DEPENDS" |
| 19 | ${ARGN} |
| 20 | ) |
| 21 | |
| 22 | add_library(${lib} SHARED ${ARG_SOURCES}) |
Damjan Marion | 958192d | 2018-09-13 18:43:19 +0200 | [diff] [blame] | 23 | if(VPP_LIB_VERSION) |
| 24 | set_target_properties(${lib} PROPERTIES SOVERSION ${VPP_LIB_VERSION}) |
| 25 | endif() |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 26 | |
| 27 | # library deps |
| 28 | if(ARG_LINK_LIBRARIES) |
| 29 | target_link_libraries(${lib} ${ARG_LINK_LIBRARIES}) |
| 30 | endif() |
| 31 | # install .so |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 32 | if(NOT ARG_COMPONENT) |
| 33 | set(ARG_COMPONENT vpp) |
| 34 | endif() |
| 35 | install( |
| 36 | TARGETS ${lib} |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 37 | DESTINATION ${VPP_LIBRARY_DIR} |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 38 | COMPONENT ${ARG_COMPONENT} |
| 39 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 40 | |
Damjan Marion | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 41 | if (ARG_LTO AND VPP_USE_LTO) |
| 42 | set_property(TARGET ${lib} PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE) |
| 43 | target_compile_options (${lib} PRIVATE "-ffunction-sections") |
| 44 | target_compile_options (${lib} PRIVATE "-fdata-sections") |
| 45 | target_link_libraries (${lib} "-Wl,--gc-sections") |
| 46 | endif() |
| 47 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 48 | if(ARG_MULTIARCH_SOURCES) |
Aloys Augustin | 2a65804 | 2020-10-13 15:43:00 +0200 | [diff] [blame] | 49 | vpp_library_set_multiarch_sources(${lib} "${ARG_DEPENDS}" ${ARG_MULTIARCH_SOURCES}) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 50 | endif() |
| 51 | |
| 52 | if(ARG_API_FILES) |
Oliver Giles | dc20371 | 2019-12-05 23:37:36 +0200 | [diff] [blame] | 53 | vpp_add_api_files(${lib} core vpp ${ARG_API_FILES}) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 54 | foreach(file ${ARG_API_FILES}) |
| 55 | get_filename_component(dir ${file} DIRECTORY) |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 56 | install( |
BenoƮt Ganne | 98438e4 | 2019-07-25 16:26:20 +0200 | [diff] [blame] | 57 | FILES ${file} ${CMAKE_CURRENT_BINARY_DIR}/${file}.h |
Ole Troan | 2a1ca78 | 2019-09-19 01:08:30 +0200 | [diff] [blame] | 58 | ${CMAKE_CURRENT_BINARY_DIR}/${file}_enum.h |
| 59 | ${CMAKE_CURRENT_BINARY_DIR}/${file}_types.h |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 60 | ${CMAKE_CURRENT_BINARY_DIR}/${file}_tojson.h |
| 61 | ${CMAKE_CURRENT_BINARY_DIR}/${file}_fromjson.h |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 62 | DESTINATION include/${lib}/${dir} |
| 63 | COMPONENT vpp-dev |
| 64 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 65 | endforeach() |
| 66 | endif() |
| 67 | |
| 68 | if(ARG_DEPENDS) |
| 69 | add_dependencies(${lib} ${ARG_DEPENDS}) |
| 70 | endif() |
| 71 | |
| 72 | # install headers |
| 73 | if(ARG_INSTALL_HEADERS) |
| 74 | foreach(file ${ARG_INSTALL_HEADERS}) |
| 75 | get_filename_component(dir ${file} DIRECTORY) |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 76 | install( |
| 77 | FILES ${file} |
| 78 | DESTINATION include/${lib}/${dir} |
Damjan Marion | eeadc14 | 2018-09-13 20:02:12 +0200 | [diff] [blame] | 79 | COMPONENT ${ARG_COMPONENT}-dev |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 80 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 81 | endforeach() |
| 82 | endif() |
| 83 | endmacro() |
| 84 | |
| 85 | ############################################################################## |
| 86 | # header files |
| 87 | ############################################################################## |
| 88 | function (add_vpp_headers path) |
| 89 | foreach(file ${ARGN}) |
| 90 | get_filename_component(dir ${file} DIRECTORY) |
Damjan Marion | 833de8c | 2018-09-07 12:39:02 +0200 | [diff] [blame] | 91 | install( |
| 92 | FILES ${file} |
| 93 | DESTINATION include/${path}/${dir} |
| 94 | COMPONENT vpp-dev |
| 95 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 96 | endforeach() |
| 97 | endfunction() |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 98 | |
| 99 | macro(add_vpp_test_library lib) |
| 100 | cmake_parse_arguments(TEST |
| 101 | "" |
| 102 | "" |
| 103 | ${ARGN} |
| 104 | ) |
| 105 | |
| 106 | foreach(file ${ARGN}) |
| 107 | get_filename_component(name ${file} NAME_WE) |
| 108 | set(test_lib ${lib}_${name}_plugin) |
| 109 | add_library(${test_lib} SHARED ${file}_test2.c) |
| 110 | if(NOT VPP_EXTERNAL_PROJECT) |
| 111 | add_dependencies(${test_lib} api_headers) |
| 112 | endif() |
| 113 | include_directories(${CMAKE_CURRENT_BINARY_DIR}) |
| 114 | set_target_properties(${test_lib} PROPERTIES NO_SONAME 1) |
| 115 | set_target_properties(${test_lib} PROPERTIES |
| 116 | PREFIX "" |
| 117 | LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vat2_plugins) |
| 118 | |
| 119 | # Later: Install and package |
| 120 | # install .so |
| 121 | #install( |
| 122 | # TARGETS ${test_lib} |
| 123 | # DESTINATION ${VPP_LIBRARY_DIR}/vat2_plugins |
| 124 | # #COMPONENT ${ARG_COMPONENT} |
| 125 | # ) |
| 126 | endforeach() |
| 127 | endmacro() |