Skip to content

Commit

Permalink
Fix meson warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
saivert committed Apr 28, 2024
1 parent 2175331 commit bb85549
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if glib_compile_schemas.found()
endif

# For development always generate a local GSchema
dev_schema = custom_target(
custom_target(
'dev-schema',
build_by_default: true,
build_always_stale: true,
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependency('glib-2.0', version: '>= 2.66')
dependency('gio-2.0', version: '>= 2.66')
dependency('gtk4', version: '>= 4.0.0')

glib_compile_resources = find_program('glib-compile-resources', required: true)
find_program('glib-compile-resources', required: true)
glib_compile_schemas = find_program('glib-compile-schemas', required: true)
desktop_file_validate = find_program('desktop-file-validate', required: false)
appstream_util = find_program('appstream-util', required: false)
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ global_conf.set_quoted('PROFILE', profile)
global_conf.set_quoted('VERSION', version + version_suffix)
global_conf.set_quoted('GETTEXT_PACKAGE', gettext_package)
global_conf.set_quoted('LOCALEDIR', localedir)
config = configure_file(
configure_file(
input: 'config.rs.in',
output: 'config.rs',
configuration: global_conf
Expand Down

0 comments on commit bb85549

Please sign in to comment.