zephyr/tests/drivers/virtualization/ivshmem/plain/CMakeLists.txt
Rodrigo Cataldo 84242a177a tests: drivers: virtualization: move ivshmem test to a new folder
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>
2022-12-10 09:47:26 +01:00

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)