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