blob: c90ee86e0bf1c3d0bed015ddd5cd1ec88661a7e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Copyright © 2018 Intel Corporation
# SPDX-License-Identifier: MIT
libgetopt = static_library(
'getopt',
'getopt_long.c',
)
idep_getopt = declare_dependency(
link_with : libgetopt,
include_directories : include_directories('.', is_system : true),
)
|