summaryrefslogtreecommitdiff
path: root/udkapi/meson.build
blob: 87ed016dd0b6f4244e909daedd28b1095e8c34eb (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
32
33
34
35
36
37
38
urbcompiler = find_program('urbcompiler.py')
headerbuilder = find_program('headerbuilder.py')

udkapi_rdb = custom_target('udkapi_rdb',
  output: 'udkapi.rdb',
  command: [urbcompiler,
            unoidl_write_exe,
            meson.current_source_dir(),
            '@PRIVATE_DIR@',
            '@OUTPUT@'])

# udkapi.rdb seems to be installed as types.rdb.
# Dunno why. The simplest thing here is to just gen it again.
custom_target('types_rdb',
  output: 'types.rdb',
  command: [urbcompiler,
            unoidl_write_exe,
            meson.current_source_dir(),
            '@PRIVATE_DIR@',
            '@OUTPUT@'],
  install: true,
  install_dir: get_option('bindir')
)


# FIXME, this only generates headers. There is no
# proper dependency tracking or dealing of the rdb file.
udk_fake_h = custom_target('udkapi_h',
  output: 'udk_fake.h',
  command: [headerbuilder,
            cppumaker_exe,
            udkapi_rdb,
            '@OUTDIR@',
            '@PRIVATE_DIR@',
            '@OUTPUT@',
            meson.current_source_dir()]
)
udkh_inc = include_directories('.')