mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
4d8f770624
Use dynamic Rebar configuration Make iconv dependency optional Disable transient_supervisors compile option Add hipe compilation support Only compile ibrowse and lhttpc when needed Make it possible to generate an OTP application release Add --enable-debug compile option Add --enable-all compiler option Add --enable-tools configure option Add --with-erlang configure option. Add --enable-erlang-version-check configure option. Add lager support Improve the test suite
21 lines
303 B
Batchfile
21 lines
303 B
Batchfile
|
|
@if "x%1"=="x--help" goto usage
|
|
|
|
@set arg=dynamic
|
|
@if "x%1"=="x--static" set arg=static
|
|
|
|
@echo Configuring for %arg% build...
|
|
|
|
erlc configure.erl
|
|
erl -s configure -env arg %arg% -noshell
|
|
|
|
@goto end
|
|
|
|
:usage
|
|
@echo Usage: configure.bat
|
|
@echo or configure.bat --static
|
|
@echo or configure.bat --help
|
|
|
|
:end
|
|
|