1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright (c) 2022 Marvell. 3 4if is_windows 5 build = false 6 reason = 'not supported on Windows' 7 subdir_done() 8endif 9 10sources = files( 11 'ml_main.c', 12 'ml_options.c', 13 'ml_test.c', 14 'parser.c', 15 'test_common.c', 16 'test_device_ops.c', 17 'test_model_common.c', 18 'test_model_ops.c', 19 'test_inference_common.c', 20 'test_inference_ordered.c', 21 'test_inference_interleave.c', 22 'test_stats.c', 23) 24 25deps += ['mldev', 'hash'] 26