Port all users of 'set_conf_file' to use the built-in rules instead. This follows the convention-over-configuration principle to make the system as a whole simpler and more consistent. Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
10 lines
214 B
CMake
10 lines
214 B
CMake
cmake_minimum_required(VERSION 3.8.2)
|
|
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(uart_high_level_api)
|
|
|
|
target_sources(app PRIVATE
|
|
src/main.c
|
|
src/test_uart_async.c
|
|
)
|