blob: aff3868722c8b9e5967b61682b3194d456a86408 [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
if(BOARD STREQUAL unit_testing)
list(APPEND SOURCES src/main.c)
find_package(ZephyrUnittest REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(mock)
else()
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(mock)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})
endif()