-
Notifications
You must be signed in to change notification settings - Fork 308
/
Copy pathmeson.build
43 lines (35 loc) · 882 Bytes
/
meson.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
libgsf = dependency('libgsf-1', required: true)
mso_to_txt_sources = [
'nemo-mso-to-txt.c'
]
mso_to_txt = executable('nemo-mso-to-txt',
mso_to_txt_sources,
dependencies: [libgsf, gio, glib],
install: true
)
ppt_to_txt_sources = [
'nemo-ppt-to-txt.c'
]
ppt_to_txt = executable('nemo-ppt-to-txt',
ppt_to_txt_sources,
dependencies: [gio, glib],
install: true
)
install_data(
['nemo-xls-to-txt', 'nemo-odf-to-txt'],
install_dir: join_paths(get_option('prefix'), get_option('bindir')),
install_mode: 'rwxr-xr-x'
)
install_data(
'epub2text.nemo_search_helper',
'mso.nemo_search_helper',
'mso-ppt.nemo_search_helper',
'mso-xls.nemo_search_helper',
'odf.nemo_search_helper',
install_dir: join_paths(nemoDataPath, 'search-helpers')
)
install_data(
'nemo-epub2text',
install_dir: get_option('bindir')
)
subdir('third-party')