diff options
Diffstat (limited to 'src/draw/Kconfig')
-rw-r--r-- | src/draw/Kconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/draw/Kconfig b/src/draw/Kconfig new file mode 100644 index 0000000..486461f --- /dev/null +++ b/src/draw/Kconfig @@ -0,0 +1,20 @@ +menuconfig DRAW + bool "Graphic library support" + default y + +if DRAW + config GL + bool "OpenGL support" + default y + + config SDL2 + bool "SDL2 support" + default y + + config TUI + bool "Terminal interface support" + default y +endif + + + |