blob: 3f3932363d08e211802b5d82bca4050dc0a7496f [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
# For the sake of demonstration, we add the driver directory as a zephyr module
# by hand. If your driver is a project that's managed by west, you can remove this line.
list(APPEND ZEPHYR_EXTRA_MODULES
${CMAKE_CURRENT_SOURCE_DIR}/hello_world_module
)
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(out_of_tree_driver)
target_sources(app PRIVATE
src/main.c
)