factorize dict and htable
[protos/libecoli.git] / examples / parse-yaml / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright 2018, Olivier MATZ <zer0@droids-corp.org>
3
4 parse_yaml_sources = [
5         'parse-yaml.c',
6 ]
7
8 ecoli_parse_yaml = executable(
9         'ecoli-parse-yaml',
10         parse_yaml_sources,
11         include_directories : inc,
12         link_with : libecoli,
13         dependencies: [yaml_dep, edit_dep])
14
15 install_data(
16         'parse-yaml.sh',
17         install_dir : get_option('bindir'))