blob: 00be92fe0c3fab9b123e08da186a601ab6199b21 [file] [log] [blame]
cmake_minimum_required(VERSION 3.13.1)
set(QEMU_EXTRA_FLAGS -s)
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(onoff_level_lighting_vnd_app)
target_sources(app PRIVATE
src/main.c
src/app_gpio.c
src/storage.c
src/mesh/ble_mesh.c
src/mesh/device_composition.c
src/mesh/no_transition_work_handler.c
src/mesh/publisher.c
src/mesh/state_binding.c
src/mesh/transition.c
)
zephyr_include_directories(
src/
src/mesh
)