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

pkg/lua: model in Kconfig

This commit is contained in:
Alexandre Abadie 2022-04-27 09:27:41 +02:00
parent 5af2dda69b
commit f0a29759c8
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 25 additions and 0 deletions

View File

@ -36,6 +36,7 @@ rsource "libfixmath/Kconfig"
rsource "libhydrogen/Kconfig"
rsource "littlefs2/Kconfig"
rsource "lora-serialization/Kconfig"
rsource "lua/Kconfig"
rsource "lv_drivers/Kconfig"
rsource "lvgl/Kconfig"
rsource "lz4/Kconfig"

24
pkg/lua/Kconfig Normal file
View File

@ -0,0 +1,24 @@
# 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 PACKAGE_LUA
bool "LUA language package"
depends on TEST_KCONFIG
depends on HAS_ARCH_32BIT
depends on !HAS_ARCH_MIPS32R2
depends on !HAS_ARCH_RISCV
depends on !MODULE_PICOLIBC
select PACKAGE_TLSF
select MODULE_PRINTF_FLOAT
select MODULE_LUA-CONTRIB
select MODULE_LIBC_GETTIMEOFDAY if !CPU_NATIVE
config MODULE_LUA-CONTRIB
bool
depends on TEST_KCONFIG