diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2017-07-21 16:20:03 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2017-07-20 17:18:33 -0400 |
commit | e8dc71cd4828ce8ccf791b27326f75b5d5ec8ab8 (patch) | |
tree | 14ecd21fda244cfa38132157ec4210ee8d696d91 /src/modules/conf_theme | |
parent | 4d3e157b30269276772806ddb0283ca20198ff8e (diff) | |
download | enlightenment-e8dc71cd4828ce8ccf791b27326f75b5d5ec8ab8.tar.gz |
meson.
Diffstat (limited to 'src/modules/conf_theme')
-rw-r--r-- | src/modules/conf_theme/meson.build | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/modules/conf_theme/meson.build b/src/modules/conf_theme/meson.build new file mode 100644 index 0000000000..28ff663c47 --- /dev/null +++ b/src/modules/conf_theme/meson.build @@ -0,0 +1,37 @@ +conf_theme_dist = [ + 'module.desktop', +] + +conf_theme_src = [ + 'e_int_config_borders.c', + 'e_int_config_color_classes.c', + 'e_int_config_fonts.c', + 'e_int_config_scale.c', + 'e_int_config_theme.c', + 'e_int_config_theme_import.c', + 'e_int_config_transitions.c', + 'e_int_config_wallpaper.c', + 'e_int_config_xsettings.c', + 'e_mod_main.c', + 'e_mod_main.h', +] + +conf_theme_dir = join_paths(dir_module_e, 'conf_theme', module_arch) +if get_option('conf-theme') == true + config_h.set('USE_MODULE_CONF_THEME', '1') + + install_data(conf_theme_dist, + install_dir: join_paths(dir_module_e, 'conf_theme') + ) + + module_files += join_paths(conf_theme_dir, 'conf_theme.so') + shared_module('conf_theme', + conf_theme_src, + include_directories: include_directories(module_includes), + name_prefix: '', + dependencies: module_deps, + install_dir: conf_theme_dir, + install: true + ) +endif + |