summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-03-11 22:35:40 +0200
committerJan-Marek Glogowski <glogow@fbihome.de>2021-04-07 16:17:17 +0000
commit31101ac63ee27447e972c712e1724c22e1c0cccf (patch)
tree80c8cbda7c5cfacf7cb861473e0d174a56cbae64
parentCompile ucb and desktop libs. (diff)
downloadcore-31101ac63ee27447e972c712e1724c22e1c0cccf.tar.gz
core-31101ac63ee27447e972c712e1724c22e1c0cccf.zip
Build localebe.
Change-Id: I6329025cf60430a2eb89ed4063f1f48da26b0214
-rw-r--r--meson.build1
-rw-r--r--shell/meson.build15
2 files changed, 16 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 2dffb7a343a6..521f2beb3a42 100644
--- a/meson.build
+++ b/meson.build
@@ -251,3 +251,4 @@ subdir('wizards')
subdir('bridges')
subdir('configmgr')
subdir('ucb')
+subdir('shell')
diff --git a/shell/meson.build b/shell/meson.build
new file mode 100644
index 000000000000..976c399f47bd
--- /dev/null
+++ b/shell/meson.build
@@ -0,0 +1,15 @@
+localebe_lib = shared_library('localebe',
+ 'source/backends/localebe/localebackend.cxx',
+ 'source/backends/localebe/localebecdef.cxx',
+ udk_fake_h, off_fake_h,
+ cpp_args: ['-DLIBO_INTERNAL_ONLY'],
+ include_directories: [main_inc, udkh_inc, offapi_inc, 'inc'],
+ link_with: [cppu_lib,
+ cppuhelper_lib,
+ sal_lib,
+ i18nlangtag_lib,
+ ],
+ dependencies: [],
+ gnu_symbol_visibility: 'hidden',
+ install: true,
+)