]> begriffs open source - acsl-example/blob - src/meson.build
Initial examples from book
[acsl-example] / src / meson.build
1 # Library sources
2 algos_sources = files(
3   'find1.c',
4   'find2.c',
5   'find3.c'
6 )
7
8 # Create the algos library
9 algos_lib = library('algos',
10   algos_sources,
11   include_directories : inc_dir,
12   install : true)
13
14 # Declare dependency for other projects to use
15 algos_dep = declare_dependency(
16   link_with : algos_lib,
17   include_directories : inc_dir)