summaryrefslogtreecommitdiff
path: root/src/meson.build
blob: 5da9ddfc1550507fec905706960a1372724c64d0 (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

configure_file(
    output: 'config.h',
    configuration: config,
)

update_mime_database = executable('update-mime-database',
    'update-mime-database.c',
    dependencies: [
        glib2,
        libxml,
    ],
    install: true,
)

test_subclassing = executable('test-subclassing',
    'test-subclassing.c',
    dependencies: [
        glib2,
        libxml,
    ],
    install: false,
)

if gio.found()
    test_tree_magic = executable('tree-magic',
        'test-tree-magic.c',
        dependencies:[
            glib2,
            gio,
        ],
        install: false,
    )
endif