summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libview/meson.build8
-rw-r--r--meson.build5
-rw-r--r--shell/meson.build1
3 files changed, 12 insertions, 2 deletions
diff --git a/libview/meson.build b/libview/meson.build
index 806c51d0..e8cad36f 100644
--- a/libview/meson.build
+++ b/libview/meson.build
@@ -1,6 +1,9 @@
libview_private_headers = [
'ev-annotation-window.h',
'ev-link-accessible.h',
+ 'ev-page-accessible.h',
+ 'ev-image-accessible.h',
+ 'ev-form-field-accessible.h',
'ev-page-cache.h',
'ev-pixbuf-cache.h',
'ev-timeline.h',
@@ -27,6 +30,9 @@ libview_sources = [
'ev-jobs.c',
'ev-job-scheduler.c',
'ev-link-accessible.c',
+ 'ev-page-accessible.c',
+ 'ev-image-accessible.c',
+ 'ev-form-field-accessible.c',
'ev-page-cache.c',
'ev-pixbuf-cache.c',
'ev-print-operation.c',
@@ -79,7 +85,7 @@ if get_option('epub')
endif
libview = library(
- 'libview',
+ 'view',
libview_sources + libview_private_headers + libdoc_enums + libview_marshal,
include_directories: include_dirs,
dependencies: libview_deps,
diff --git a/meson.build b/meson.build
index ed518e53..69277334 100644
--- a/meson.build
+++ b/meson.build
@@ -66,6 +66,7 @@ xml = dependency('libxml-2.0', version: '>= 2.5.0')
zlib = dependency('zlib')
libsecret = dependency('libsecret-1', version: '>= 0.5', required: get_option('keyring'))
gtk_unix_print = dependency('gtk+-unix-print-3.0', version: '>= ' + gtk_version, required: get_option('gtk_unix_print'))
+mate_desktop = dependency('mate-desktop-2.0')
# Backend configuration
enabled_backend_names = []
@@ -195,7 +196,7 @@ config_h = declare_dependency(
)
# Include directories
-include_dirs = include_directories('.', 'libdocument', 'libview', 'libmisc')
+include_dirs = include_directories('.', 'libdocument', 'libview', 'libmisc', 'cut-n-paste/toolbar-editor', 'properties')
include_root = include_directories('.')
# Headers
@@ -218,6 +219,7 @@ c_args = [
'-DMATELOCALEDIR="@0@"'.format(join_paths(prefix, datadir, 'locale')),
'-Werror=implicit-function-declaration',
'-DATRIL_COMPILATION',
+ '-DPACKAGE_URL="https://mate-desktop.org"'
]
cpp_args = [
@@ -225,6 +227,7 @@ cpp_args = [
'-DMATELOCALEDIR="@0@"'.format(join_paths(prefix, datadir, 'locale')),
'-DATRIL_COMPILATION',
'-DHAVE_CONFIG_H',
+ '-DPACKAGE_URL="https://mate-desktop.org"'
]
# Maintainer mode configuration
diff --git a/shell/meson.build b/shell/meson.build
index dc023c9b..c3b93894 100644
--- a/shell/meson.build
+++ b/shell/meson.build
@@ -72,6 +72,7 @@ atril_deps = [
gtk,
libsecret,
math,
+ mate_desktop
]
if get_option('enable_dbus')