mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-23 03:54:33 +03:00
new trunk
git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@78 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
120
config/Config.in
Normal file
120
config/Config.in
Normal file
@@ -0,0 +1,120 @@
|
||||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see scripts/config/Kconfig-language.txt
|
||||
#
|
||||
|
||||
mainmenu "axTLS Configuration"
|
||||
|
||||
config HAVE_DOT_CONFIG
|
||||
bool
|
||||
default y
|
||||
|
||||
choice
|
||||
prompt "Platform"
|
||||
default CONFIG_PLATFORM_LINUX
|
||||
|
||||
config CONFIG_PLATFORM_LINUX
|
||||
bool "Linux"
|
||||
|
||||
config CONFIG_PLATFORM_CYGWIN
|
||||
bool "Cygwin"
|
||||
|
||||
config CONFIG_PLATFORM_SOLARIS
|
||||
bool "Solaris"
|
||||
|
||||
config CONFIG_PLATFORM_WIN32
|
||||
bool "Win32"
|
||||
|
||||
endchoice
|
||||
|
||||
menu "General Configuration"
|
||||
|
||||
config PREFIX
|
||||
string "axTLS installation prefix"
|
||||
depends on !CONFIG_PLATFORM_WIN32
|
||||
default "/usr/local"
|
||||
help
|
||||
Define your directory to install axTLS files/subdirs in.
|
||||
|
||||
config CONFIG_DEBUG
|
||||
bool "Build axTLS with Debugging symbols"
|
||||
default n
|
||||
help
|
||||
Say Y here if you wish to compile axTLS with debugging symbols.
|
||||
This will allow you to use a debugger to examine axTLS internals.
|
||||
This increases the size of the binary considerably and should only be
|
||||
used when doing development.
|
||||
If you are doing development and want to debug axTLS, answer Y.
|
||||
|
||||
Most people should answer N.
|
||||
|
||||
menu "Microsoft Compiler Options"
|
||||
depends on CONFIG_PLATFORM_WIN32
|
||||
|
||||
choice
|
||||
prompt "Compiler"
|
||||
depends on CONFIG_PLATFORM_WIN32
|
||||
default CONFIG_VISUAL_STUDIO_7_0
|
||||
|
||||
config CONFIG_VISUAL_STUDIO_6_0
|
||||
bool "Visual Studio 6.0 (VC98)"
|
||||
help
|
||||
Use Microsoft's Visual Studio 6.0 platform.
|
||||
|
||||
config CONFIG_VISUAL_STUDIO_7_0
|
||||
bool "Visual Studio 7.0 (2003)"
|
||||
help
|
||||
Use Microsoft's Visual Studio 2003 platform.
|
||||
|
||||
config CONFIG_VISUAL_STUDIO_8_0
|
||||
bool "Visual Studio 8.0 (2005)"
|
||||
help
|
||||
Use Microsoft's Visual Studio 2005 platform.
|
||||
|
||||
endchoice
|
||||
|
||||
config CONFIG_VISUAL_STUDIO_6_0_BASE
|
||||
string "Base"
|
||||
depends on CONFIG_VISUAL_STUDIO_6_0
|
||||
default "c:\\Program Files\\Microsoft Visual Studio"
|
||||
|
||||
config CONFIG_VISUAL_STUDIO_7_0_BASE
|
||||
string "Base"
|
||||
depends on CONFIG_VISUAL_STUDIO_7_0
|
||||
default "c:\\Program Files\\Microsoft Visual Studio .NET 2003"
|
||||
|
||||
config CONFIG_VISUAL_STUDIO_8_0_BASE
|
||||
string "Base"
|
||||
depends on CONFIG_VISUAL_STUDIO_8_0
|
||||
default "c:\\Program Files\\Microsoft Visual Studio 8"
|
||||
|
||||
endmenu
|
||||
|
||||
config CONFIG_EXTRA_CFLAGS_OPTIONS
|
||||
string "Any extra CFLAGS options for the compiler?"
|
||||
help
|
||||
Do you want to pass any extra CFLAGS options to the compiler as
|
||||
you build axTLS? If so, this is the option for you... For
|
||||
example, if you want to add some simple compiler switches (like
|
||||
-march=i686), or check for warnings using -Werror, just those
|
||||
options here.
|
||||
|
||||
config CONFIG_EXTRA_LDFLAGS_OPTIONS
|
||||
string "Any extra LDFLAGS options for the compiler?"
|
||||
help
|
||||
Do you want to pass any extra LDFLAGS options to the compiler?
|
||||
|
||||
endmenu
|
||||
|
||||
source ssl/Config.in
|
||||
config CONFIG_AXHTTPD
|
||||
bool "Enable HTTP/HTTPS Web Server"
|
||||
default y
|
||||
help
|
||||
Build the AXHTTPD web server
|
||||
|
||||
source httpd/Config.in
|
||||
source bindings/Config.in
|
||||
source samples/Config.in
|
||||
source ssl/BigIntConfig.in
|
||||
|
Reference in New Issue
Block a user