Skip to content

Commit

Permalink
meson: Use gnome module to compile schemas (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano authored Jul 14, 2024
1 parent 300ef3d commit 26dcebd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You'll need the following dependencies:
* libgranite-dev
* libwingpanel-dev
* libxml2-dev
* meson
* meson (>= 0.57.0)
* valac

Run `meson` to configure the build environment and then `ninja` to build
Expand Down
7 changes: 5 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
project(
'keyboard',
'vala', 'c',
version: '2.4.1'
version: '2.4.1',
meson_version: '>= 0.57.0'
)

i18n = import('i18n')
Expand Down Expand Up @@ -66,4 +67,6 @@ shared_module(
subdir('po')
subdir('data')

meson.add_install_script('meson/post_install.py')
gnome.post_install(
glib_compile_schemas: true
)
10 changes: 0 additions & 10 deletions meson/post_install.py

This file was deleted.

0 comments on commit 26dcebd

Please sign in to comment.