diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-20 15:14:24 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-20 15:14:24 +0200 |
commit | 88492823826b3720be4ba29d246848031418bfb5 (patch) | |
tree | 4f17cc7f4ef3f76f869a1d4fcb94722464aa9d0b /Kconfig | |
parent | Hostlist test: test non-empty domain (diff) | |
download | smolbote-88492823826b3720be4ba29d246848031418bfb5.tar.xz |
Add Kconfiglib to parse Kconfig/.config
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +mainmenu "smolbote configuration" + +comment "Build system settings" +menu "Install paths" + config INSTALL_BINDIR + string "User executables" + default "bin" + + config INSTALL_LIBDIR + string "Object code libraries" + default "lib64" + + config INSTALL_PLUGINDIR + string "Plugins" + default "lib64/plugins" + +endmenu + +comment "Application Settings" +rsource src/Kconfig |