rabbitmq-server/deps/rabbitmq_web_stomp/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
939 B
Makefile
Raw Permalink Normal View History

2015-10-19 22:44:46 +08:00
PROJECT = rabbitmq_web_stomp
2019-04-22 23:11:06 +08:00
PROJECT_DESCRIPTION = RabbitMQ STOMP-over-WebSockets support
PROJECT_MOD = rabbit_web_stomp_app
define PROJECT_ENV
[
{tcp_config, [{port, 15674}]},
{ssl_config, []},
{num_tcp_acceptors, 10},
{num_ssl_acceptors, 10},
{cowboy_opts, []},
{proxy_protocol, false},
{ws_frame, text},
{use_http_auth, false}
]
endef
2015-10-19 22:44:46 +08:00
2016-12-07 23:08:15 +08:00
define PROJECT_APP_EXTRA_KEYS
{broker_version_requirements, []}
endef
2015-10-19 22:44:46 +08:00
DEPS = cowboy rabbit_common rabbit rabbitmq_stomp
TEST_DEPS = gun rabbitmq_ct_helpers rabbitmq_ct_client_helpers
2015-10-19 22:44:46 +08:00
PLT_APPS += cowlib
# FIXME: Add Ranch as a BUILD_DEPS to be sure the correct version is picked.
# See rabbitmq-components.mk.
BUILD_DEPS += ranch
dep_gun = hex 2.2.0
DEP_EARLY_PLUGINS = rabbit_common/mk/rabbitmq-early-plugin.mk
2015-10-19 22:44:46 +08:00
DEP_PLUGINS = rabbit_common/mk/rabbitmq-plugin.mk
include ../../rabbitmq-components.mk
include ../../erlang.mk
CT_HOOKS = rabbit_ct_hook