26 lines
529 B
Makefile
26 lines
529 B
Makefile
LIBPAHOMQTTCPP_DIR := $(call select_from_ports,libpahomqttcpp)/src/lib/libpahomqttcpp
|
|
|
|
vpath %.cpp $(LIBPAHOMQTTCPP_DIR)/src
|
|
|
|
INC_DIR += $(LIBPAHOMQTTCPP_DIR)/src
|
|
INC_DIR += $(LIBPAHOMQTTCPP_DIR)/pahomqttc/src
|
|
|
|
SRC_CC = async_client.cpp \
|
|
client.cpp \
|
|
connect_options.cpp \
|
|
disconnect_options.cpp \
|
|
iclient_persistence.cpp \
|
|
message.cpp \
|
|
properties.cpp \
|
|
response_options.cpp \
|
|
ssl_options.cpp \
|
|
string_collection.cpp \
|
|
subscribe_options.cpp \
|
|
token.cpp \
|
|
topic.cpp \
|
|
will_options.cpp
|
|
|
|
LIBS += libc stdcxx
|
|
|
|
CC_CXX_WARN_STRICT =
|