irrigation_system/software/apps/hello_world/CMakeLists.txt

7 lines
153 B
CMake

cmake_minimum_required(VERSION 3.20)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(hello_world)
target_sources(app PRIVATE src/main.c)