10 lines
297 B
CMake
10 lines
297 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
# Include the main 'software' directory as a module to find boards, libs, etc.
|
|
list(APPEND ZEPHYR_EXTRA_MODULES ${CMAKE_CURRENT_SOURCE_DIR}/../..)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(gateway)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|