summaryrefslogtreecommitdiff
path: root/app/test-mldev/meson.build
blob: 2922888e9fdbe257b8fd1ed5d46b214cacec63b2 (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
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2022 Marvell.

if is_windows
    build = false
    reason = 'not supported on Windows'
    subdir_done()
endif

sources = files(
        'ml_main.c',
        'ml_options.c',
        'ml_test.c',
        'parser.c',
        'test_common.c',
        'test_device_ops.c',
        'test_model_common.c',
        'test_model_ops.c',
        'test_inference_common.c',
        'test_inference_ordered.c',
        'test_inference_interleave.c',
        'test_stats.c',
)

deps += ['mldev', 'hash']