5c2f198fd8
* Rm top-level west.yml; Cleanup manifests; Fix unit testing * Cleanup sample * Cleanup test CMakeLists Co-authored-by: Gregory Shue <gregory.shue@legrand.us>
11 lines
268 B
CMake
11 lines
268 B
CMake
# SPDX-License-Identifier: MIT
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
get_filename_component(MY_PROJECT_NAME ${CMAKE_CURRENT_SOURCE_DIR} NAME)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(${MY_PROJECT_NAME})
|
|
|
|
target_sources(app PRIVATE src/main.c)
|