blob: 8a31af68742e920d77d4440d44751008ff7c7557 [file] [log] [blame]
Damjan Marion612dd6a2018-07-30 12:45:07 +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
Dave Barachc74b43c2020-04-09 17:24:07 -040014option(VPP_BUFFER_FAULT_INJECTOR "Include the buffer fault injector" OFF)
15
Damjan Marion612dd6a2018-07-30 12:45:07 +020016##############################################################################
17# Generate vlib/config.h
18##############################################################################
Dave Barachc74b43c2020-04-09 17:24:07 -040019if(VPP_BUFFER_FAULT_INJECTOR)
20 set(BUFFER_ALLOC_FAULT_INJECTOR 1 CACHE STRING "fault injector on")
21else()
22 set(BUFFER_ALLOC_FAULT_INJECTOR 0 CACHE STRING "fault injector off")
23endif()
24
Damjan Marion612dd6a2018-07-30 12:45:07 +020025set(PRE_DATA_SIZE 128 CACHE STRING "Buffer headroom size.")
Damjan Marionef587582020-05-20 22:01:44 +020026
27if (CMAKE_BUILD_TYPE_UC STREQUAL "DEBUG")
28 set(_ss 16)
29else()
30 set(_ss 15)
31endif()
32set(VLIB_PROCESS_LOG2_STACK_SIZE
33 ${_ss}
34 CACHE
35 STRING "Process node default stack size (log2)"
36)
37
Damjan Marion612dd6a2018-07-30 12:45:07 +020038configure_file(
39 ${CMAKE_SOURCE_DIR}/vlib/config.h.in
40 ${CMAKE_BINARY_DIR}/vlib/config.h
41)
Damjan Marion833de8c2018-09-07 12:39:02 +020042install(
43 FILES ${CMAKE_BINARY_DIR}/vlib/config.h
44 DESTINATION include/vlib
45 COMPONENT vpp-dev
46)
Damjan Marion612dd6a2018-07-30 12:45:07 +020047
48##############################################################################
Stephen Hemminger6fbef232018-10-15 12:52:30 -070049# Find lib and include files
50##############################################################################
51message(STATUS "Looking for libuuid")
52find_path(UUID_INCLUDE_DIR NAMES uuid/uuid.h)
53find_library(UUID_LIB NAMES uuid)
54
55if(UUID_INCLUDE_DIR AND UUID_LIB)
56 include_directories(${UUID_INCLUDE_DIR})
57 set(VMBUS_SOURCE linux/vmbus.c)
58 set(VMBUS_LIBS uuid)
59 message(STATUS "Found uuid in ${UUID_INCLUDE_DIR}")
60else()
61 message(WARNING "-- libuuid not found - vmbus support disabled")
62endif()
63
64##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +020065# vlib shared library
66##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +020067add_vpp_library(vlib
68 SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +020069 buffer.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020070 cli.c
71 counter.c
Neale Ranns22e1f1d2019-03-01 15:53:11 +000072 drop.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020073 error.c
74 format.c
Dave Baracha638c182019-06-21 18:24:07 -040075 handoff_trace.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020076 init.c
77 linux/pci.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020078 linux/vfio.c
79 log.c
80 main.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020081 node.c
82 node_cli.c
83 node_format.c
Ray Kinsella4830e4f2020-03-10 14:35:32 +000084 node_init.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020085 pci/pci.c
Jakub Grajciar53f06a02020-03-30 08:12:57 +020086 pci/pci_types_api.c
Damjan Marion68b4da62018-09-30 18:26:20 +020087 physmem.c
Neale Ranns76b56492018-09-28 15:16:14 +000088 punt.c
89 punt_node.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020090 threads.c
91 threads_cli.c
92 trace.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020093 unix/cli.c
94 unix/input.c
95 unix/main.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020096 unix/plugin.c
97 unix/util.c
Stephen Hemminger6fbef232018-10-15 12:52:30 -070098 vmbus/vmbus.c
99 ${VMBUS_SOURCE}
Damjan Marion612dd6a2018-07-30 12:45:07 +0200100
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000101 MULTIARCH_SOURCES
102 drop.c
Neale Ranns76b56492018-09-28 15:16:14 +0000103 punt_node.c
Ray Kinsella4830e4f2020-03-10 14:35:32 +0000104 node_init.c
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000105
Damjan Marion4553c952018-08-26 11:04:40 +0200106 INSTALL_HEADERS
Damjan Marion612dd6a2018-07-30 12:45:07 +0200107 buffer_funcs.h
108 buffer.h
109 buffer_node.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200110 cli.h
111 counter.h
Ole Troan58492a82018-09-04 13:19:12 +0200112 counter_types.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200113 defs.h
114 error_funcs.h
115 error.h
116 format_funcs.h
117 global_funcs.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200118 init.h
119 linux/vfio.h
120 log.h
121 main.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200122 node_funcs.h
123 node.h
124 pci/pci_config.h
125 pci/pci.h
Jakub Grajciar53f06a02020-03-30 08:12:57 +0200126 pci/pci_types_api.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200127 physmem_funcs.h
128 physmem.h
Neale Ranns76b56492018-09-28 15:16:14 +0000129 punt.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200130 threads.h
131 trace_funcs.h
132 trace.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200133 unix/mc_socket.h
134 unix/plugin.h
135 unix/unix.h
136 vlib.h
Stephen Hemminger6fbef232018-10-15 12:52:30 -0700137 vmbus/vmbus.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200138
Jakub Grajciar53f06a02020-03-30 08:12:57 +0200139 API_FILES
140 pci/pci_types.api
141
Stephen Hemminger6fbef232018-10-15 12:52:30 -0700142 LINK_LIBRARIES vppinfra svm ${VMBUS_LIBS} ${CMAKE_DL_LIBS}
Jakub Grajciar53f06a02020-03-30 08:12:57 +0200143
144 DEPENDS api_headers
Damjan Marion4553c952018-08-26 11:04:40 +0200145)