devilhorns pushed a commit to branch master. http://git.enlightenment.org/apps/express.git/commit/?id=a4cbdc8d4ec9c9ae88a36ee3ec81766297501c6b
commit a4cbdc8d4ec9c9ae88a36ee3ec81766297501c6b Author: Christopher Michael <devilho...@comcast.net> Date: Fri Feb 12 13:51:24 2021 -0500 express: Fix meson app directory name datadir should have the project name appended so that things like elm_app_data_dir_get will retrieve the proper path --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 25798ee..3c588aa 100644 --- a/meson.build +++ b/meson.build @@ -19,7 +19,7 @@ dir_include = join_paths(dir_prefix, get_option('includedir')) dir_pkginclude = join_paths(dir_include, meson.project_name()) dir_bin = join_paths(dir_prefix, get_option('bindir')) dir_lib = join_paths(dir_prefix, get_option('libdir')) -dir_data = join_paths(dir_prefix, get_option('datadir')) +dir_data = join_paths(dir_prefix, get_option('datadir'), meson.project_name()) dir_pkgdata = join_paths(dir_data, meson.project_name()) dir_locale = join_paths(dir_prefix, get_option('localedir')) @@ -85,6 +85,9 @@ express_cargs = [ ] # configuration config_h = configuration_data() +config_h.set('EFL_BETA_API_SUPPORT', 1) +config_h.set('EFL_EO_API_SUPPORT', 1) +config_h.set_quoted('PACKAGE', meson.project_name()) config_h.set_quoted('PACKAGE_NAME', meson.project_name()) config_h.set_quoted('PACKAGE_VERSION', meson.project_version()) config_h.set_quoted('PACKAGE_BIN_DIR', dir_bin) --