diff options
author | Oz Tiram <[email protected]> | 2025-04-03 21:29:14 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2025-04-04 22:19:13 +0000 |
commit | beb9f93a346c9da3cd5bee571dd226f913f24dc5 (patch) | |
tree | 26851b4e1dd6f0f310255d22c4a8f90228daca07 | |
parent | 688692ae4af3c511a497a620adfbdd2e038c81f9 (diff) | |
download | atril-beb9f93a346c9da3cd5bee571dd226f913f24dc5.tar.bz2 atril-beb9f93a346c9da3cd5bee571dd226f913f24dc5.tar.xz |
fix: add missing properties/meson.build
Signed-off-by: Oz Tiram <[email protected]>
-rw-r--r-- | properties/meson.build | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/properties/meson.build b/properties/meson.build new file mode 100644 index 00000000..cc97aa0e --- /dev/null +++ b/properties/meson.build @@ -0,0 +1,20 @@ +glib_dep = dependency('glib-2.0') +properties_inc = include_directories('.', '..') + +libevproperties_sources = [ + 'ev-properties-view.c', + 'ev-properties-view.h', +] + +libevproperties = static_library( + 'evproperties', + libevproperties_sources, + include_directories: properties_inc, + dependencies: [glib_dep, gtk] +) + +libevproperties_dep = declare_dependency( + link_with: libevproperties, + include_directories: properties_inc, + dependencies: [glib_dep, gtk] +) |