diff options
author | Benjamin Berg <bberg@redhat.com> | 2020-04-26 22:01:53 +0200 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2021-01-11 20:31:52 +0100 |
commit | 3baa1fb356f5c41302132996444abb2e9b2f9237 (patch) | |
tree | 31116d881e6416343fa43f8c51e7697d41f578fd /meson.build | |
parent | 0fd9d41d907246894f360bcb6fbbe1aaa32c0885 (diff) | |
download | libgweather-3baa1fb356f5c41302132996444abb2e9b2f9237.tar.gz |
gweather: Add new GVariant schema and database generator
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 0e3d3bb..bd3b331 100644 --- a/meson.build +++ b/meson.build @@ -38,6 +38,7 @@ includedir = join_paths(prefix, get_option('includedir')) libexecdir = join_paths(prefix, get_option('libexecdir')) sysconfdir = join_paths(prefix, get_option('sysconfdir')) pkgdatadir = join_paths(datadir, 'libgweather') +pkglibdir = join_paths(libdir, 'libgweather') glib_req_version = '>= 2.44.0' gtk_req_version = '>= 3.13.5' @@ -115,8 +116,8 @@ endif root_inc = include_directories('.') -subdir('libgweather') subdir('data') +subdir('libgweather') subdir('schemas') if get_option('gtk_doc') subdir('doc') |