vppinfra: install missing cuckoo hash header files
[vpp.git] / src / vppinfra / CMakeLists.txt
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 enable_language(ASM)
15
16 ##############################################################################
17 # Generate vppinfra/config.h
18 ##############################################################################
19 set(LOG2_CACHE_LINE_BYTES ${VPP_LOG2_CACHE_LINE_SIZE})
20
21 option(VPP_VECTOR_GROW_BY_ONE "Vectors grow by one, instead of 3/2" OFF)
22 if(VPP_VECTOR_GROW_BY_ONE)
23   set(VECTOR_GROW_BY_ONE 1)
24 else(VPP_VECTOR_GROW_BY_ONE)
25   set(VECTOR_GROW_BY_ONE 0)
26 endif(VPP_VECTOR_GROW_BY_ONE)
27
28 configure_file(
29   ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in
30   ${CMAKE_BINARY_DIR}/vppinfra/config.h
31 )
32
33 install(
34   FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h
35   DESTINATION include/vppinfra
36   COMPONENT vpp-dev
37 )
38
39 ##############################################################################
40 # vppinfra sources
41 ##############################################################################
42 set(VPPINFRA_SRCS
43   backtrace.c
44   bihash_all_vector.c
45   cpu.c
46   dlmalloc.c
47   elf.c
48   elog.c
49   error.c
50   fheap.c
51   fifo.c
52   format.c
53   graph.c
54   hash.c
55   heap.c
56   longjmp.S
57   macros.c
58   maplog.c
59   mem_dlmalloc.c
60   mhash.c
61   mpcap.c
62   pcap.c
63   pmalloc.c
64   pool.c
65   ptclosure.c
66   random_buffer.c
67   random.c
68   random_isaac.c
69   rbtree.c
70   serialize.c
71   slist.c
72   socket.c
73   std-formats.c
74   string.c
75   time.c
76   time_range.c
77   timing_wheel.c
78   tw_timer_2t_2w_512sl.c
79   tw_timer_16t_1w_2048sl.c
80   tw_timer_16t_2w_512sl.c
81   tw_timer_1t_3w_1024sl_ov.c
82   tw_timer_2t_1w_2048sl.c
83   tw_timer_4t_3w_256sl.c
84   unformat.c
85   unix-formats.c
86   unix-misc.c
87   valloc.c
88   vec.c
89   vector.c
90   zvec.c
91 )
92
93 set(VPPINFRA_HEADERS
94   sanitizer.h
95   bihash_16_8.h
96   bihash_24_8.h
97   bihash_40_8.h
98   bihash_48_8.h
99   bihash_8_8.h
100   bihash_template.c
101   bihash_template.h
102   bihash_vec8_8.h
103   bitmap.h
104   bitops.h
105   byte_order.h
106   cache.h
107   callback.h
108   clib_error.h
109   clib.h
110   cpu.h
111   crc32.h
112   cuckoo_8_8.h
113   cuckoo_16_8.h
114   cuckoo_common.h
115   cuckoo_debug.h
116   cuckoo_template.h
117   cuckoo_template.c
118   dlist.h
119   dlmalloc.h
120   elf_clib.h
121   elf.h
122   elog.h
123   error_bootstrap.h
124   error.h
125   fheap.h
126   fifo.h
127   file.h
128   flowhash_24_16.h
129   flowhash_8_8.h
130   flowhash_template.h
131   format.h
132   graph.h
133   hash.h
134   heap.h
135   lb_hash_hash.h
136   llist.h
137   lock.h
138   longjmp.h
139   macros.h
140   maplog.h
141   math.h
142   memcpy_avx2.h
143   memcpy_avx512.h
144   memcpy_sse3.h
145   mem.h
146   mhash.h
147   mheap.h
148   mpcap.h
149   os.h
150   pcap.h
151   pcap_funcs.h
152   pipeline.h
153   pmalloc.h
154   pool.h
155   pmc.h
156   ptclosure.h
157   random_buffer.h
158   random.h
159   random_isaac.h
160   rbtree.h
161   serialize.h
162   sha2.h
163   slist.h
164   smp.h
165   socket.h
166   sparse_vec.h
167   string.h
168   time.h
169   time_range.h
170   timing_wheel.h
171   tw_timer_16t_1w_2048sl.h
172   tw_timer_16t_2w_512sl.h
173   tw_timer_1t_3w_1024sl_ov.h
174   tw_timer_2t_1w_2048sl.h
175   tw_timer_4t_3w_256sl.h
176   tw_timer_template.c
177   tw_timer_template.h
178   types.h
179   atomics.h
180   unix.h
181   valloc.h
182   vec_bootstrap.h
183   vec.h
184   vector_altivec.h
185   vector_avx2.h
186   vector_avx512.h
187   vector_funcs.h
188   vector.h
189   vector_neon.h
190   vector_sse42.h
191   xxhash.h
192   xy.h
193   zvec.h
194   linux/syscall.h
195   linux/sysfs.h
196 )
197
198 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
199   list(APPEND VPPINFRA_SRCS
200     elf_clib.c
201     linux/mem.c
202     linux/sysfs.c
203    )
204 endif()
205
206 add_vpp_library(vppinfra
207   SOURCES ${VPPINFRA_SRCS}
208   LINK_LIBRARIES m
209   INSTALL_HEADERS ${VPPINFRA_HEADERS}
210   COMPONENT libvppinfra
211 )
212
213 ##############################################################################
214 # vppinfra headers
215 ##############################################################################
216 option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
217 if(VPP_BUILD_VPPINFRA_TESTS)
218   foreach(test
219     bihash_vec88
220     cuckoo_template
221     dlist
222     elf
223     elog
224     fifo
225     flowhash_template
226     format
227     fpool
228     hash
229     heap
230     longjmp
231     macros
232     maplog
233     pmalloc
234     pool_iterate
235     ptclosure
236     random
237     random_isaac
238     rwlock
239     serialize
240     slist
241     socket
242     spinlock
243     time
244     time_range
245     timing_wheel
246     tw_timer
247     valloc
248     vec
249     zvec
250   )
251     add_vpp_executable(test_${test}
252       SOURCES test_${test}.c
253       LINK_LIBRARIES vppinfra pthread
254       )
255   endforeach()
256
257   foreach(test bihash_template cuckoo_bihash)
258     add_vpp_executable(test_${test}
259       SOURCES test_${test}.c
260       LINK_LIBRARIES vppinfra Threads::Threads
261       )
262   endforeach()
263 endif(VPP_BUILD_VPPINFRA_TESTS)