1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #17995 from aabadie/pr/tests/pkg_utensor_kconfig

tests/pkg_utensor: model in Kconfig + fix utensor package dependencies
This commit is contained in:
Kevin "Tristate Tom" Weiss 2022-04-28 17:25:56 +02:00 committed by GitHub
commit 7731e6ab62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 4 deletions

View File

@ -10,13 +10,15 @@ config PACKAGE_UTENSOR
depends on TEST_KCONFIG
depends on HAS_LIBSTDCPP
depends on HAS_CPP
select MODULE_UTENSOR_OPS
select MODULE_UTENSOR_UTIL
select MODULE_UTENSOR-OPS
select MODULE_UTENSOR-UTIL
select MODULE_CPP
select MODULE_LIBSTDCPP
config MODULE_UTENSOR_OPS
config MODULE_UTENSOR-OPS
bool
depends on TEST_KCONFIG
config MODULE_UTENSOR_UTIL
config MODULE_UTENSOR-UTIL
bool
depends on TEST_KCONFIG

View File

@ -8,3 +8,7 @@
config MODULE_PTHREAD
bool "Pthread Support"
depends on TEST_KCONFIG
select MODULE_TIMEX
select MODULE_ZTIMER
select MODULE_ZTIMER64_XTIMER_COMPAT if MODULE_ZTIMER_XTIMER_COMPAT
select ZTIMER64_USEC

View File

@ -0,0 +1,2 @@
CONFIG_PACKAGE_UTENSOR=y
CONFIG_MODULE_MODELS=y

View File

@ -0,0 +1,10 @@
# Copyright (c) 2022 Inria
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config MODULE_MODELS
bool "uTensor models"
depends on TEST_KCONFIG