summaryrefslogtreecommitdiff
path: root/src/modules/conf_randr/meson.build
blob: 2ce882dbad33ddcde11c925d1cf367d503c961de (plain)
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
conf_randr_dist = [
	'e-module-conf_randr.edj',
	'module.desktop',
]

conf_randr_src = [
	'e_int_config_randr2.c',
	'e_mod_main.c',
	'e_int_config_randr2.h',
	'e_mod_main.h',
]

conf_randr_dir = join_paths(dir_module_e, 'conf_randr', module_arch)
if get_option('conf-randr') == true
	config_h.set('USE_MODULE_CONF_RANDR', '1')

	install_data(conf_randr_dist,
		install_dir: join_paths(dir_module_e, 'conf_randr')
	)

        module_files += join_paths(conf_randr_dir, 'conf_randr.so')
	shared_module('conf_randr',
                conf_randr_src,
                include_directories: include_directories(module_includes),
                name_prefix: '',
                dependencies: module_deps,
                install_dir: conf_randr_dir,
                install: true
        )
endif