blockingClientTCPTransport.cpp: implementation blockingTCP.h: * class BlockingTCPTransport: - added Context to ctor - added 'virtual' declaration to overrides - 'priority' is now 'int16' * added class 'BlockingClientTCPTransport' blockingTCPConnector.cpp: implementation blockingTCPTransport.cpp: * removed 'transportRegistry' added 'context' blockingUDP.h: * added missing override 'getIntrospectionRegistry' * 'BlockingUDPConnector::_priority' is now 'int16' instead of 'short' blockingUDPConnector.cpp: * 'connect' parameter priority is now 'int16' instead of 'short' * fixed and added error logging remote.h: * added 'TransportRegistry' forward declaration * added 'Transport::getIntrospectionRegistry' prototype * changed 'Connector::connect' prototype parameter 'priority': 'short'->'int16' * added 'Context' interface * added 'ReferenceCountingTransport' interface transportRegistry.h: * added 'Transport' forward declaration testRemoteClientImpl.cpp: * added '#include <transportRegistry.h>' to fix compile error * lots of auto-format changes transportRegistryTest.cpp: *
60 lines
1.2 KiB
Makefile
60 lines
1.2 KiB
Makefile
TOP = ..
|
|
include $(TOP)/configure/CONFIG
|
|
|
|
PVACCESS = $(TOP)/pvAccessApp/
|
|
|
|
|
|
SRC_DIRS += $(PVACCESS)/ca
|
|
INC += caConstants.h
|
|
INC += version.h
|
|
LIBSRCS += version.cpp
|
|
|
|
|
|
SRC_DIRS += $(PVACCESS)/utils
|
|
INC += hexDump.h
|
|
INC += wildcharMatcher.h
|
|
INC += arrayFIFO.h
|
|
INC += growingCircularBuffer.h
|
|
INC += inetAddressUtil.h
|
|
INC += logger.h
|
|
INC += introspectionRegistry.h
|
|
INC += transportRegistry.h
|
|
LIBSRCS += hexDump.cpp
|
|
LIBSRCS += wildcharMatcher.cpp
|
|
LIBSRCS += inetAddressUtil.cpp
|
|
LIBSRCS += logger.cpp
|
|
LIBSRCS += introspectionRegistry.cpp
|
|
LIBSRCS += transportRegistry.cpp
|
|
|
|
|
|
SRC_DIRS += $(PVACCESS)/client
|
|
INC += pvAccess.h
|
|
LIBSRCS += pvAccess.cpp
|
|
|
|
|
|
SRC_DIRS += $(PVACCESS)/factory
|
|
LIBSRCS += ChannelAccessFactory.cpp
|
|
LIBSRCS += CreateRequestFactory.cpp
|
|
|
|
|
|
SRC_DIRS += $(PVACCESS)/remote
|
|
INC += remote.h
|
|
INC += blockingUDP.h
|
|
INC += beaconEmitter.h
|
|
INC += beaconServerStatusProvider.h
|
|
INC += beaconHandler.h
|
|
INC += blockingTCP.h
|
|
LIBSRCS += blockingUDPTransport.cpp
|
|
LIBSRCS += blockingUDPConnector.cpp
|
|
LIBSRCS += beaconEmitter.cpp
|
|
LIBSRCS += beaconServerStatusProvider.cpp
|
|
LIBSRCS += beaconHandler.cpp
|
|
LIBSRCS += blockingTCPTransport.cpp
|
|
LIBSRCS += blockingClientTCPTransport.cpp
|
|
LIBSRCS += blockingTCPConnector.cpp
|
|
|
|
LIBRARY = pvAccess
|
|
pvAccess_LIBS += Com
|
|
|
|
include $(TOP)/configure/RULES
|