diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-02-25 21:35:50 -0500 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-02-25 21:35:50 -0500 |
| commit | 84830c81c9e0188c840d13b99e077d557f210c21 (patch) | |
| tree | ecc1c17b0dfec4a3fc4fdc657a4ee4291fddc22b /Kconfig | |
| parent | 76b511c7fecac26e305600f3a2274d1039e62b67 (diff) | |
feat: Support for menuconfig & genconfig
Support for menuconfig and genconfg as targets in cmake.
Diffstat (limited to 'Kconfig')
| -rw-r--r-- | Kconfig | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -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 |
