File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 4
4
version : ' 1.0.0' ,
5
5
)
6
6
7
+ pkg = import (' pkgconfig' )
7
8
cc = meson .get_compiler(' c' )
8
9
9
10
# Dependencies
Original file line number Diff line number Diff line change @@ -18,14 +18,20 @@ libfst = library(
18
18
' fst' ,
19
19
sources : libfst_sources,
20
20
dependencies : libfst_dependencies,
21
- # include_directories: config_inc,
22
- install : true ,
23
21
version : meson .project_version(),
22
+ install : true ,
24
23
)
25
24
26
25
libfst_dep = declare_dependency (
27
26
link_with : libfst,
28
27
include_directories : ' .' ,
29
28
)
30
29
31
- install_headers (libfst_headers, subdir : ' libfst' )
30
+ install_headers (libfst_headers, subdir : ' libfst' )
31
+
32
+ pkg.generate(
33
+ name : ' libfst' ,
34
+ libraries : libfst,
35
+ description : ' FST reader and writer library' ,
36
+ subdirs : ' libfst' ,
37
+ )
You can’t perform that action at this time.
0 commit comments