summaryrefslogtreecommitdiff
path: root/test/meson.build
blob: cd3db6697bb876acd08285656b429c12da986fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
testapp = executable('test-application',
                     'test-application.c',
                     include_directories: root_inc,
                     dependencies: [ atspi_dep ],
                    )

memory = executable('memory',
                    'memory.c',
                    include_directories: root_inc,
                    dependencies: [ atspi_dep ],
                   )

test('memory', memory, depends: testapp)