summaryrefslogtreecommitdiff
path: root/Kconfig
blob: b531803be4dd6011b08d081dda535b5f9c3947d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# Copyright (c) 2026 Jacob McDonnell
#
# SPDX-License-Identifier: MIT
#
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