mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 04:15:19 +00:00
The needed options to QEMU_EXTRA_FLAGS now get set from a single central place, so applications don't need to do it anymore. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
9 lines
278 B
CMake
9 lines
278 B
CMake
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(NONE)
|
|
|
|
zephyr_library_include_directories($ENV{ZEPHYR_BASE}/samples/bluetooth)
|
|
target_sources(app PRIVATE src/main.c)
|
|
if(CONFIG_BOARD_BBC_MICROBIT)
|
|
target_sources(app PRIVATE src/microbit.c)
|
|
endif()
|