summaryrefslogtreecommitdiff
path: root/tests/dummyatk/meson.build
blob: 4f98989048f541a8965bc648c11a69d4a240e0b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dummyatk_sources = [
  'my-atk-action.c',
  'my-atk-component.c',
  'my-atk-document.c',
  'my-atk-editable-text.c',
  'my-atk-hyperlink.c',
  'my-atk-hypertext.c',
  'my-atk-image.c',
  'my-atk-text.c',
  'my-atk-object.c',
  'my-atk-table.c',
  'my-atk-table-cell.c',
  'my-atk-selection.c',
  'my-atk-value.c',
]

dummyatk = static_library('dummyatk', dummyatk_sources,
                          include_directories: root_inc,
                          dependencies: [ glib_dep, gobject_dep, atk_dep ])

dummyatk_dep = declare_dependency(link_with: dummyatk,
                                  dependencies: [ glib_dep, gobject_dep, atk_dep ],
                                  include_directories: include_directories('.'))