summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-common/recipes-utilities/oom-test/files/meson.build
blob: 215a7e60b04c365e9781be298b73e72c1a7a1a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
project(
    'oom-test',
    'c',
    default_options: [
        'warning_level=3',
        'werror=true',
        'c_std=c11'
    ],
    license: 'Apache-2.0',
    version: '0.1',
)
project_description = 'OOM (Out Of Memory) Test Application'

executable(
    'oom-test',
    [
        'oom-test.c',
    ],
    install: true,
    install_dir: get_option('bindir')
)