# Copyright 2022 The ChromiumOS Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS "${ZEPHYR_BASE}") project(jump_tags) # Include FFF fakes add_subdirectory(${PLATFORM_EC}/zephyr/test/test_utils test_utils) FILE(GLOB test_sources src/*.c) target_sources(app PRIVATE ${test_sources})