summaryrefslogtreecommitdiffstats
path: root/ucb/meson.build
blob: ae747c3cff64ed30824443d98e6cf65a46732803 (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
ucb1_lib = shared_library('ucb1',
  'source/core/cmdenv.cxx',
  'source/core/identify.cxx',
  'source/core/provprox.cxx',
  'source/core/ucb.cxx',
  'source/core/ucbcmds.cxx',
  'source/core/ucbprops.cxx',
  'source/core/ucbserv.cxx',
  'source/core/ucbstore.cxx',
  'source/core/FileAccess.cxx',
  'source/regexp/regexp.cxx',
  udk_fake_h, off_fake_h,
  cpp_args: ['-DLIBO_INTERNAL_ONLY'],
  include_directories: [main_inc, udkh_inc, offapi_inc, 'source/inc'],
  link_with: [comphelper_lib,
    cppu_lib,
    cppuhelper_lib,
    sal_lib,
    tl_lib,
    ucbhelper_lib,
    utl_lib,
  ],
  dependencies: [],
  gnu_symbol_visibility: 'hidden',
  install: true,
)