summaryrefslogtreecommitdiff
path: root/nuttx/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/Kconfig')
-rw-r--r--nuttx/Kconfig38
1 files changed, 38 insertions, 0 deletions
diff --git a/nuttx/Kconfig b/nuttx/Kconfig
index 2d5b9e585..b647a49f8 100644
--- a/nuttx/Kconfig
+++ b/nuttx/Kconfig
@@ -20,7 +20,45 @@ menu "Build Setup"
config EXPERIMENTAL
bool "Prompt for development and/or incomplete code/drivers"
+choice
+ prompt "Build Host Platform"
+ default HOST_LINUX
+
+config HOST_LINUX
+ bool "Linux"
+
+config HOST_OSX
+ bool "OSX"
+
+config HOST_WINDOWS
+ bool "Windows"
+
+config HOST_OTHER
+ bool "Other"
+
+endchoice
+
+choice
+ prompt "Windows Build Environment"
+ default WINDOWS_CYGWIN
+ depends on HOST_WINDOWS
+
+config WINDOWS_NATIVE
+ bool "Windows Native"
+
+config WINDOWS_CYGWIN
+ bool "Cygwin"
+
+config WINDOWS_MSYS
+ bool "MSYS"
+
+config WINDOWS_OTHER
+ bool "Other"
+
+endchoice
+
menu "Build Configuration"
+
config APPS_DIR
string "Application directory"
default "../apps"