Move the existing ivshmem test to a folder that explicitly identifies its target: ivshmem-plain. The existing test is not compatible with ivshmem-doorbell. ivshmem-doorbell has additional requirements compared to -plain (ivshmem-server, notification handling), so it is reasonable that another test is required for it. This commits prepares the way for the new test. No funcional change intended. Signed-off-by: Rodrigo Cataldo <rodrigo.cataldo@huawei.com> Co-authored-by: Henri Xavier <datacomos@huawei.com>
9 lines
238 B
CMake
9 lines
238 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2020 Intel Corp.
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(qemu_x86_64_ivshmem)
|
|
|
|
target_sources(app PRIVATE src/ivshmem.c)
|