From 84830c81c9e0188c840d13b99e077d557f210c21 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Wed, 25 Feb 2026 21:35:50 -0500 Subject: feat: Support for menuconfig & genconfig Support for menuconfig and genconfg as targets in cmake. --- Kconfig | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Kconfig (limited to 'Kconfig') diff --git a/Kconfig b/Kconfig new file mode 100644 index 0000000..2c34b88 --- /dev/null +++ b/Kconfig @@ -0,0 +1,26 @@ +mainmenu "Example Configuration" + +config USE_TOOLCHAIN_FILE + bool "Use Toolchain File" + default n + help + Enable toolchain file option. + +config CMAKE_TOOLCHAIN_FILE + string "Toolchain File Path" + default "TC-clang.cmake" + depends on USE_TOOLCHAIN_FILE + help + Path to toolchain file from CMake Current Source Dir. + +config AGE + int "Age" + default 18 + help + Example Int Config + +config NAME + string "Name" + default "John" + help + Example String Config -- cgit v1.2.3