2012-10-09 09:49:51 +02:00
2012-09-05 14:10:43 +02:00
2011-12-20 08:24:46 -05:00
2012-10-03 09:44:44 +02:00
2011-09-22 14:36:56 +02:00
2012-10-09 09:49:51 +02:00
2012-06-15 14:47:16 +02:00
2012-01-03 15:20:25 +00:00
2011-12-12 11:29:00 -05:00
2010-12-19 08:56:06 +01:00
2012-06-15 14:47:16 +02:00
2012-09-06 09:19:02 +02:00

Define

EPICS_BASE
PVDATA_HOME

variables that points to EPICS base and pvDataCPP installation directory (includes and libraries) in configure/RELEASE.local

Google C++ Testing Framework
----------------------------
Download:
http://code.google.com/p/googletest/

Extract, go to its root directory and in run:
export GTEST_DIR=$PWD
g++ -g -O3 -I${GTEST_DIR}/include -I${GTEST_DIR} -c ${GTEST_DIR}/src/gtest-all.cc
g++ -g -O3 -I${GTEST_DIR}/include -I${GTEST_DIR} -c ${GTEST_DIR}/src/gtest_main.cc
ar -rv libgtest_main.a gtest_main.o gtest-all.o

mkdir -p $EPICS_HOME/gtest/lib
cp -r ${GTEST_DIR}/include $EPICS_HOME/gtest
cp libgtest_main.a $EPICS_HOME/gtest/lib

(you can use cmake, see gtest README)
Languages
C++ 63.4%
C 35.2%
Python 0.9%
Makefile 0.5%