From f8e408589931c41f8b70c7b191f5027b98aad3d8 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Wed, 11 Nov 2020 17:43:53 +0100 Subject: [PATCH] sys/embunit: add module to Kconfig --- sys/Kconfig | 2 ++ sys/embunit/Kconfig | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 sys/embunit/Kconfig diff --git a/sys/Kconfig b/sys/Kconfig index 452c82b320..1061033bc4 100644 --- a/sys/Kconfig +++ b/sys/Kconfig @@ -11,6 +11,8 @@ rsource "auto_init/Kconfig" rsource "benchmark/Kconfig" rsource "color/Kconfig" rsource "div/Kconfig" +rsource "embunit/Kconfig" +rsource "event/Kconfig" rsource "fmt/Kconfig" rsource "isrpipe/Kconfig" rsource "net/Kconfig" diff --git a/sys/embunit/Kconfig b/sys/embunit/Kconfig new file mode 100644 index 0000000000..a6f91d1909 --- /dev/null +++ b/sys/embunit/Kconfig @@ -0,0 +1,11 @@ +# Copyright (c) 2020 HAW Hamburg +# +# 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_EMBUNIT + bool "EmbUnit" + help + RIOT Unittests based on the EmbUnit Framework.