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
|
desktop = 'mate-window-properties.desktop'
i18n.merge_file(
type: 'desktop',
input: desktop + '.in',
output: desktop,
po_dir: po_dir,
install: true,
install_dir: mcc_desktopdir
)
sources = files(
'mate-metacity-support.c',
'mate-window-properties.c'
)
sources += gnome.compile_resources(
'mate-window-properties-resources',
'org.mate.mcc.windows.gresource.xml',
c_name: 'window_properties',
export: true
)
cflags += [
'-DMATECC_DATA_DIR="@0@"'.format(mcc_pkgdatadir),
]
executable(
'mate-window-properties',
sources : sources,
include_directories: config_inc,
dependencies : [common_deps, libcommon_dep],
c_args : cflags,
install : true,
install_dir : get_option('bindir')
)
|