Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1ba091524a | |||
| d2d390a852 | |||
| 63ee062e9c |
+13
-3
@@ -1,7 +1,17 @@
|
||||
Release/4.1
|
||||
===========
|
||||
Release 4.1.2
|
||||
=============
|
||||
|
||||
This is for EPICS V4 release 4.5
|
||||
The only change since release 4.1.1 is:
|
||||
|
||||
Added libraries needed for static builds
|
||||
----------------------------------------
|
||||
|
||||
The missing ca and nt libraries needed for static builds have been added to
|
||||
each of the examples.
|
||||
|
||||
|
||||
Release 4.1.1
|
||||
=============
|
||||
|
||||
pvaClient is a synchronous API for pvAccess.
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@
|
||||
# EPICS4_DIR=/home/epicsv4
|
||||
# PVCOMMON=${EPICS4_DIR}/pvCommonCPP
|
||||
# PVDATA=${EPICS4_DIR}/pvDataCPP
|
||||
# NORMATIVETYPES=${EPICSV4}/normativeTypesCPP
|
||||
# NORMATIVETYPES=${EPICS4_DIR}/normativeTypesCPP
|
||||
# PVACCESS=${EPICS4_DIR}/pvAccessCPP
|
||||
#Either create a RELEASE.local one level above the TOP for this module
|
||||
#OR copy ExampleRELEASE.local to RELEASE.local and edit it.
|
||||
|
||||
@@ -9,42 +9,54 @@ PROD_HOST += examplePvaClientProcess
|
||||
examplePvaClientProcess_SRCS += examplePvaClientProcess.cpp
|
||||
examplePvaClientProcess_LIBS += pvaClient
|
||||
examplePvaClientProcess_LIBS += pvAccess
|
||||
examplePvaClientProcess_LIBS += nt
|
||||
examplePvaClientProcess_LIBS += pvData
|
||||
examplePvaClientProcess_LIBS += ca
|
||||
examplePvaClientProcess_LIBS += Com
|
||||
|
||||
PROD_HOST += examplePvaClientGet
|
||||
examplePvaClientGet_SRCS += examplePvaClientGet.cpp
|
||||
examplePvaClientGet_LIBS += pvaClient
|
||||
examplePvaClientGet_LIBS += pvAccess
|
||||
examplePvaClientGet_LIBS += nt
|
||||
examplePvaClientGet_LIBS += pvData
|
||||
examplePvaClientGet_LIBS += ca
|
||||
examplePvaClientGet_LIBS += Com
|
||||
|
||||
PROD_HOST += examplePvaClientPut
|
||||
examplePvaClientPut_SRCS += examplePvaClientPut.cpp
|
||||
examplePvaClientPut_LIBS += pvaClient
|
||||
examplePvaClientPut_LIBS += pvAccess
|
||||
examplePvaClientPut_LIBS += nt
|
||||
examplePvaClientPut_LIBS += pvData
|
||||
examplePvaClientPut_LIBS += ca
|
||||
examplePvaClientPut_LIBS += Com
|
||||
|
||||
PROD_HOST += examplePvaClientMonitor
|
||||
examplePvaClientMonitor_SRCS += examplePvaClientMonitor.cpp
|
||||
examplePvaClientMonitor_LIBS += pvaClient
|
||||
examplePvaClientMonitor_LIBS += pvAccess
|
||||
examplePvaClientMonitor_LIBS += nt
|
||||
examplePvaClientMonitor_LIBS += pvData
|
||||
examplePvaClientMonitor_LIBS += ca
|
||||
examplePvaClientMonitor_LIBS += Com
|
||||
|
||||
PROD_HOST += examplePvaClientMultiDouble
|
||||
examplePvaClientMultiDouble_SRCS += examplePvaClientMultiDouble.cpp
|
||||
examplePvaClientMultiDouble_LIBS += pvaClient
|
||||
examplePvaClientMultiDouble_LIBS += pvAccess
|
||||
examplePvaClientMultiDouble_LIBS += nt
|
||||
examplePvaClientMultiDouble_LIBS += pvData
|
||||
examplePvaClientMultiDouble_LIBS += ca
|
||||
examplePvaClientMultiDouble_LIBS += Com
|
||||
|
||||
PROD_HOST += examplePvaClientNTMulti
|
||||
examplePvaClientNTMulti_SRCS += examplePvaClientNTMulti.cpp
|
||||
examplePvaClientNTMulti_LIBS += pvaClient
|
||||
examplePvaClientNTMulti_LIBS += pvAccess
|
||||
examplePvaClientNTMulti_LIBS += nt
|
||||
examplePvaClientNTMulti_LIBS += pvData
|
||||
examplePvaClientNTMulti_LIBS += ca
|
||||
examplePvaClientNTMulti_LIBS += Com
|
||||
|
||||
PROD_HOST += helloWorldRPC
|
||||
@@ -61,6 +73,7 @@ helloWorldPutGet_LIBS += pvaClient
|
||||
helloWorldPutGet_LIBS += pvAccess
|
||||
helloWorldPutGet_LIBS += nt
|
||||
helloWorldPutGet_LIBS += pvData
|
||||
helloWorldPutGet_LIBS += ca
|
||||
helloWorldPutGet_LIBS += Com
|
||||
|
||||
#===========================
|
||||
|
||||
Reference in New Issue
Block a user