Use a more recent meson to silence deprecations

This commit is contained in:
Davide Andreoli 2023-12-10 07:46:09 +01:00
parent 52298760d1
commit 54133987a3
2 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
To build using meson To build using meson
==================== ====================
meson build meson setup build
cd build cd build
ninja ninja
ninja install ninja install
@ -8,7 +8,7 @@ ninja install
Or without chdir Or without chdir
================ ================
meson build meson setup build
ninja -C build ninja -C build
ninja -C build install ninja -C build install

View File

@ -3,16 +3,16 @@
project('places', 'c', project('places', 'c',
version: '0.2.0', version: '0.2.0',
license: 'GPL v3', license: 'GPL v3',
meson_version: '>= 0.47.0') meson_version: '>= 0.58.0')
gettext_domain = 'e-module-' + meson.project_name() gettext_domain = 'e-module-' + meson.project_name()
#### Enlightenemnt #### #### Enlightenemnt ####
dep_e = dependency('enlightenment', version: '>= 0.23.99') dep_e = dependency('enlightenment', version: '>= 0.23.99')
e_modules_dir = dep_e.get_pkgconfig_variable('modules') e_modules_dir = dep_e.get_variable('modules')
e_release = dep_e.get_pkgconfig_variable('release') e_release = dep_e.get_variable('release')
e_module_arch = dep_e.get_pkgconfig_variable('module_arch') e_module_arch = dep_e.get_variable('module_arch')
#### Install dirs #### #### Install dirs ####
@ -70,7 +70,7 @@ if get_option('nls')
cc = meson.get_compiler('c') cc = meson.get_compiler('c')
dep_intl = cc.find_library('intl', required : false) dep_intl = cc.find_library('intl', required : false)
subdir('po') subdir('po')
endif endif
#### Edje cc #### #### Edje cc ####
@ -89,7 +89,7 @@ configure_file(output: 'places_config.h', configuration: config_h)
install_data('module.desktop', install_dir: mod_install_dir) install_data('module.desktop', install_dir: mod_install_dir)
cmd = [ edje_cc, cmd = [ edje_cc,
'-id', join_paths(meson.source_root(), 'images'), '-id', join_paths(meson.project_source_root(), 'images'),
'@INPUT@', '@OUTPUT@'] '@INPUT@', '@OUTPUT@']
custom_target('e-module-places.edj', custom_target('e-module-places.edj',
input : 'e-module-places.edc', input : 'e-module-places.edc',