This should align with subsys/display which we do not have yet. Plan is to move lib/gui into subsys/display. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
10 lines
221 B
CMake
10 lines
221 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(cfb)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|