blob: fbb2c68f218133df10d96b437c27fb2edc22c9b6 [file] [log] [blame]
Damjan Marion4553c952018-08-26 11:04:40 +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_library lib)
15 cmake_parse_arguments(ARG
Damjan Marionaf7892c2020-10-22 14:23:47 +020016 "LTO"
Damjan Marion43b06062018-08-29 22:20:45 +020017 "COMPONENT"
Damjan Marion4553c952018-08-26 11:04:40 +020018 "SOURCES;MULTIARCH_SOURCES;API_FILES;LINK_LIBRARIES;INSTALL_HEADERS;DEPENDS"
19 ${ARGN}
20 )
21
Damjan Marion115012a2021-04-02 17:35:13 +020022 set (lo ${lib}_objs)
23 add_library(${lo} OBJECT ${ARG_SOURCES})
24 set_target_properties(${lo} PROPERTIES POSITION_INDEPENDENT_CODE ON)
Damjan Marion0d39cba2021-05-10 14:51:44 +020025 target_compile_options(${lo} PUBLIC ${VPP_DEFAULT_MARCH_FLAGS})
Damjan Marion115012a2021-04-02 17:35:13 +020026
27 add_library(${lib} SHARED)
28 target_sources(${lib} PRIVATE $<TARGET_OBJECTS:${lo}>)
29
Damjan Marion958192d2018-09-13 18:43:19 +020030 if(VPP_LIB_VERSION)
31 set_target_properties(${lib} PROPERTIES SOVERSION ${VPP_LIB_VERSION})
32 endif()
Damjan Marion4553c952018-08-26 11:04:40 +020033
34 # library deps
35 if(ARG_LINK_LIBRARIES)
36 target_link_libraries(${lib} ${ARG_LINK_LIBRARIES})
37 endif()
38 # install .so
Damjan Marion43b06062018-08-29 22:20:45 +020039 if(NOT ARG_COMPONENT)
40 set(ARG_COMPONENT vpp)
41 endif()
42 install(
43 TARGETS ${lib}
Damjan Marion599efc62020-05-07 16:49:45 +020044 DESTINATION ${VPP_LIBRARY_DIR}
Damjan Marion43b06062018-08-29 22:20:45 +020045 COMPONENT ${ARG_COMPONENT}
46 )
Damjan Marion4553c952018-08-26 11:04:40 +020047
Damjan Marionaf7892c2020-10-22 14:23:47 +020048 if (ARG_LTO AND VPP_USE_LTO)
Damjan Marion115012a2021-04-02 17:35:13 +020049 set_property(TARGET ${lo} PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
Damjan Marionaf7892c2020-10-22 14:23:47 +020050 set_property(TARGET ${lib} PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
51 target_compile_options (${lib} PRIVATE "-ffunction-sections")
52 target_compile_options (${lib} PRIVATE "-fdata-sections")
53 target_link_libraries (${lib} "-Wl,--gc-sections")
Damjan Marion1e267242021-11-06 17:09:37 +010054 if(compiler_flag_no_stringop_overflow)
55 target_link_libraries (${lib} "-Wno-stringop-overflow")
56 endif()
Damjan Marionaf7892c2020-10-22 14:23:47 +020057 endif()
58
Damjan Marion4553c952018-08-26 11:04:40 +020059 if(ARG_MULTIARCH_SOURCES)
Ole Troan7d527a22020-12-02 14:19:49 +010060 vpp_library_set_multiarch_sources(${lib} DEPENDS ${ARG_DEPENDS} SOURCES ${ARG_MULTIARCH_SOURCES})
Damjan Marion4553c952018-08-26 11:04:40 +020061 endif()
62
63 if(ARG_API_FILES)
Oliver Gilesdc203712019-12-05 23:37:36 +020064 vpp_add_api_files(${lib} core vpp ${ARG_API_FILES})
Damjan Marion4553c952018-08-26 11:04:40 +020065 foreach(file ${ARG_API_FILES})
66 get_filename_component(dir ${file} DIRECTORY)
Damjan Marion43b06062018-08-29 22:20:45 +020067 install(
BenoƮt Ganne98438e42019-07-25 16:26:20 +020068 FILES ${file} ${CMAKE_CURRENT_BINARY_DIR}/${file}.h
Ole Troan2a1ca782019-09-19 01:08:30 +020069 ${CMAKE_CURRENT_BINARY_DIR}/${file}_enum.h
70 ${CMAKE_CURRENT_BINARY_DIR}/${file}_types.h
Ole Troandf87f802020-11-18 19:17:48 +010071 ${CMAKE_CURRENT_BINARY_DIR}/${file}_tojson.h
72 ${CMAKE_CURRENT_BINARY_DIR}/${file}_fromjson.h
Damjan Marion43b06062018-08-29 22:20:45 +020073 DESTINATION include/${lib}/${dir}
74 COMPONENT vpp-dev
75 )
Damjan Marion4553c952018-08-26 11:04:40 +020076 endforeach()
77 endif()
78
Ole Troan7d527a22020-12-02 14:19:49 +010079 if(NOT VPP_EXTERNAL_PROJECT)
Damjan Marion115012a2021-04-02 17:35:13 +020080 add_dependencies(${lo} api_headers)
Ole Troan7d527a22020-12-02 14:19:49 +010081 endif()
82
Damjan Marion4553c952018-08-26 11:04:40 +020083 if(ARG_DEPENDS)
Damjan Marion115012a2021-04-02 17:35:13 +020084 add_dependencies(${lo} ${ARG_DEPENDS})
Damjan Marion4553c952018-08-26 11:04:40 +020085 endif()
86
87 # install headers
88 if(ARG_INSTALL_HEADERS)
89 foreach(file ${ARG_INSTALL_HEADERS})
90 get_filename_component(dir ${file} DIRECTORY)
Damjan Marion43b06062018-08-29 22:20:45 +020091 install(
92 FILES ${file}
93 DESTINATION include/${lib}/${dir}
Damjan Marioneeadc142018-09-13 20:02:12 +020094 COMPONENT ${ARG_COMPONENT}-dev
Damjan Marion43b06062018-08-29 22:20:45 +020095 )
Damjan Marion4553c952018-08-26 11:04:40 +020096 endforeach()
97 endif()
98endmacro()
99
100##############################################################################
101# header files
102##############################################################################
103function (add_vpp_headers path)
104 foreach(file ${ARGN})
105 get_filename_component(dir ${file} DIRECTORY)
Damjan Marion833de8c2018-09-07 12:39:02 +0200106 install(
107 FILES ${file}
108 DESTINATION include/${path}/${dir}
109 COMPONENT vpp-dev
110 )
Damjan Marion4553c952018-08-26 11:04:40 +0200111 endforeach()
112endfunction()
Ole Troandf87f802020-11-18 19:17:48 +0100113
Florin Coras248210c2021-09-14 18:54:45 -0700114macro(add_vat_test_library lib)
115 cmake_parse_arguments(TEST
116 ""
117 ""
118 ${ARGN}
119 )
120
121 foreach(file ${ARGN})
122 get_filename_component(name ${file} NAME_WE)
123 set(test_lib ${lib}_${name}_plugin)
124 add_library(${test_lib} SHARED ${file})
125 target_compile_options(${test_lib} PUBLIC ${VPP_DEFAULT_MARCH_FLAGS})
126 if(NOT VPP_EXTERNAL_PROJECT)
127 add_dependencies(${test_lib} api_headers)
128 endif()
129 include_directories(${CMAKE_CURRENT_BINARY_DIR})
130 set_target_properties(${test_lib} PROPERTIES NO_SONAME 1)
131 set_target_properties(${test_lib} PROPERTIES
132 PREFIX ""
133 LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vpp_api_test_plugins)
134
135 # install .so
136 install(
137 TARGETS ${test_lib}
138 DESTINATION ${VPP_LIBRARY_DIR}/vpp_api_test_plugins
139 COMPONENT ${ARG_COMPONENT}
140 )
141 endforeach()
142endmacro()
143
Ole Troandf87f802020-11-18 19:17:48 +0100144macro(add_vpp_test_library lib)
145 cmake_parse_arguments(TEST
146 ""
147 ""
148 ${ARGN}
149 )
150
151 foreach(file ${ARGN})
152 get_filename_component(name ${file} NAME_WE)
153 set(test_lib ${lib}_${name}_plugin)
154 add_library(${test_lib} SHARED ${file}_test2.c)
Damjan Marion0d39cba2021-05-10 14:51:44 +0200155 target_compile_options(${test_lib} PUBLIC ${VPP_DEFAULT_MARCH_FLAGS})
Ole Troandf87f802020-11-18 19:17:48 +0100156 if(NOT VPP_EXTERNAL_PROJECT)
157 add_dependencies(${test_lib} api_headers)
158 endif()
159 include_directories(${CMAKE_CURRENT_BINARY_DIR})
160 set_target_properties(${test_lib} PROPERTIES NO_SONAME 1)
161 set_target_properties(${test_lib} PROPERTIES
162 PREFIX ""
163 LIBRARY_OUTPUT_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/vat2_plugins)
164
Ole Troandf87f802020-11-18 19:17:48 +0100165 # install .so
Ole Troan91144fb2021-08-17 12:57:00 +0200166 install(
167 TARGETS ${test_lib}
168 DESTINATION ${VPP_LIBRARY_DIR}/vat2_plugins
169 COMPONENT ${ARG_COMPONENT}
170 )
Ole Troandf87f802020-11-18 19:17:48 +0100171 endforeach()
172endmacro()
Damjan Marion3648d932021-04-30 20:27:53 +0200173
174macro(vpp_find_library var)
175 find_library(${var} ${ARGN})
176 mark_as_advanced(${var})
177endmacro()
178macro(vpp_find_path var)
179 find_path(${var} ${ARGN})
180 mark_as_advanced(${var})
181endmacro()