Files
bacnet_stack/zephyr/samples/hello_bacnet_stack/CMakeLists.txt
T
Greg Shue 5c2f198fd8 Issue 121 zephyr module cleanup west 0 8 0a1 (#122)
* Rm top-level west.yml; Cleanup manifests; Fix unit testing

* Cleanup sample

* Cleanup test CMakeLists

Co-authored-by: Gregory Shue <gregory.shue@legrand.us>
2020-09-17 09:58:06 -05:00

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)