10 lines
290 B
CMake
10 lines
290 B
CMake
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
# Register the vnd7050aj module before finding Zephyr
|
|
list(APPEND ZEPHYR_EXTRA_MODULES ${CMAKE_CURRENT_SOURCE_DIR}/modules/vnd7050aj)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(hello_world)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|