summaryrefslogtreecommitdiff
path: root/shell/meson.build
blob: f695f749ff74978f3e257e4c15d33d467a7e6393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
localebe_lib = shared_library('localebe1lo',
  'source/backends/localebe/localebackend.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,
)

desktopbe_lib = shared_library('desktopbe1lo',
  'source/backends/desktopbe/desktopbackend.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,
     tl_lib,
     vcl_lib,
   ],
  dependencies: [],
  gnu_symbol_visibility: 'hidden',
  install: true,
)