2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2018-12-11 23:33:23 +08:00
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
2020-02-12 22:00:46 +08:00
|
|
|
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
|
2020-05-03 17:35:46 +08:00
|
|
|
project(fpu_sharing)
|
2017-10-27 21:43:34 +08:00
|
|
|
|
|
|
|
# Some boards are significantly slower than others resulting in the test
|
|
|
|
# output being in the range of every few seconds to every few minutes. To
|
|
|
|
# compensate for this, one can control the number of iterations in the PI
|
|
|
|
# calculation through PI_NUM_ITERATIONS. Lowering this value will increase
|
|
|
|
# the speed of the test but it will come at the expense of precision.
|
2018-05-03 21:56:27 +08:00
|
|
|
|
|
|
|
set_ifndef(PI_NUM_ITERATIONS 700000)
|
|
|
|
zephyr_compile_definitions(PI_NUM_ITERATIONS=${PI_NUM_ITERATIONS})
|
2017-10-27 21:43:34 +08:00
|
|
|
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|