2018-08-13 15:46:42 +08:00
|
|
|
cmake_minimum_required(VERSION 3.8.2)
|
2017-10-27 21:43:34 +08:00
|
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
|
|
project(NONE)
|
|
|
|
|
2018-07-23 17:19:57 +08:00
|
|
|
FILE(GLOB app_sources src/[^u]*.c)
|
2017-10-27 21:43:34 +08:00
|
|
|
target_sources(app PRIVATE ${app_sources})
|
2018-07-23 17:19:57 +08:00
|
|
|
target_sources_ifdef(CONFIG_USERSPACE app PRIVATE src/userspace_bench.c)
|