sdk build tools and app framework updates (#171)

This commit is contained in:
Wang Xin
2020-02-22 10:12:26 +08:00
committed by GitHub
parent a4ac16a1c8
commit 82b0bb44c3
30 changed files with 572 additions and 733 deletions

View File

@ -1,12 +1,5 @@
mainmenu "WebAssembly Micro Runtime Configuration"
config WAMR_SDK_PROFILE
string "wamr sdk profile name"
default "default"
help
create a new SDK by giving a name or overwrite
the "default" profile
choice
prompt "select a build target"
@ -64,29 +57,28 @@ choice
endchoice
config APP_FRAMEWORK_ENABLE
bool "enable app framework"
help
enable wamr app framework
choice
prompt "application framework"
config APP_FRAMEWORK_DISABLE
bool "Disable app framework"
help
Disable wamr app framework
menu "app modules"
depends on APP_FRAMEWORK_ENABLE
config APP_FRAMEWORK_DEFAULT
bool "Default components"
help
Default components
config APP_BUILD_ALL
bool "enable all modules"
config APP_FRAMEWORK_ALL
bool "All components"
source ".wamr_modules"
config APP_FRAMEWORK_CUSTOM
bool "customized module config"
endmenu
menu "modules:"
depends on APP_FRAMEWORK_CUSTOM
config EXTRA_INCLUDE_ENABLE
bool "enable extra include dir"
source ".wamr_modules"
config EXTRA_INCLUDE_PATH
string "external include path"
depends on EXTRA_INCLUDE_ENABLE
help
Pass external include path to be added in the SDK
This is useful when your app modules need some external
header files, such as the wgl modules which need some config
file when building the runtime library
endmenu
endchoice