summaryrefslogtreecommitdiff
path: root/src/modules/tiling/meson.build
blob: 1c7715ab307e9bf52ca44e2af0c2fa9b1887c426 (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
tiling_src = [
	'e_mod_config.c',
	'e_mod_tiling.c',
	'window_tree.c',
	'e_mod_tiling.h',
	'window_tree.h',
]

tiling_mod_dir = join_paths(dir_module_e, 'tiling')
tiling_dir = join_paths(tiling_mod_dir, module_arch)
if get_option('tiling') == true
	config_h.set('USE_MODULE_TILING', '1')

        module_files += join_paths(tiling_dir, 'tiling.so')
	shared_module('tiling',
                tiling_src,
                include_directories: include_directories(module_includes),
                name_prefix: '',
                dependencies: module_deps,
                install_dir: tiling_dir,
                install: true
        )
endif

install_data('e-module-tiling.edj', install_dir: tiling_mod_dir, install : true)