git.droids-corp.org
/
dpdk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
drivers: change indentation in build files
[dpdk.git]
/
drivers
/
compress
/
zlib
/
meson.build
1
# SPDX-License-Identifier: BSD-3-Clause
2
# Copyright(c) 2018 Cavium Networks
3
4
dep = dependency('zlib', required: false, method: 'pkg-config')
5
if not dep.found()
6
build = false
7
reason = 'missing dependency, "zlib"'
8
endif
9
10
deps += 'bus_vdev'
11
sources = files('zlib_pmd.c', 'zlib_pmd_ops.c')
12
ext_deps += dep