summaryrefslogtreecommitdiff
path: root/shell/meson.build
blob: 7ed1b39a8f58d2cb0a07c877f74db04c07787290 (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
31
localebe_lib = shared_library('localebe1lo',
  '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,
)

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,
)