blob: 89b45eff92ed7023b1d9a0cd1ae0e06a59956d88 [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
if(BOARD STREQUAL bbc_microbit)
set(CONF_FILE microbit.conf)
elseif(BOARD STREQUAL nrf52840_pca10090)
set(CONF_FILE nrf52840_pca10090.conf)
elseif(BOARD STREQUAL rv32m1_vega_ri5cy)
set(CONF_FILE rv32m1_vega_ri5cy.conf)
else()
set(CONF_FILE nrf5.conf)
endif()
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(hci_uart)
target_sources(app PRIVATE src/main.c)