Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meson: Use gnome module to compile schemas #1987

Merged
merged 2 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ A window & compositing manager based on libmutter and designed by elementary for
## Building, Testing, and Installation

You'll need the following dependencies:
* meson
* gettext (>= 0.19.6)
* gsettings-desktop-schemas-dev
* libcanberra-dev
Expand All @@ -18,6 +17,7 @@ You'll need the following dependencies:
* libgtk-3-dev (>= 3.10.0)
* libmutter-10-dev (>= 42.0) | libmutter-dev (>= 3.18.3)
* libxml2-utils
* meson (>= 0.59.0)
* valac (>= 0.46.0)

Run `meson build` to configure the build environment. Change to the build directory and run `ninja` to build
Expand Down
19 changes: 0 additions & 19 deletions build-aux/meson/post_install.py

This file was deleted.

7 changes: 5 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project('gala',
'c', 'vala',
version: '7.1.3',
meson_version: '>= 0.58.0',
meson_version: '>= 0.59.0',
license: 'GPL3',
)

Expand Down Expand Up @@ -195,4 +195,7 @@ if vapigen.found()
subdir('vapi')
endif

meson.add_install_script('build-aux/meson/post_install.py')
gnome.post_install(
glib_compile_schemas: true,
update_desktop_database: true
)
Loading