To build from this directory type:
>cmake .             // only need to do this once
>make

This should build three libraries:
   ccafe/src/libccafeCore.so
   neo/libneocca-0.2.4.so
   container/libccaContainer.so

It will also build the cvdx_cca example program in the
examples/cvode/cvode_1999/cvdx directory. This program links with 
the three libraries above.


Directories:

boost: 
  contains a subset of the boost headers which are used by ccafe

ccafe:
  Code to create libccafeCore.so which is a neo based version of 
  CCAFFINE. 

container
  Code to create libccaContainer.so. The container allows
  SimTK to create a separate container for its components which are
  separate from the components in CCAFFINE. This enables SimTK
  to use many of the services provided by CCAFFINE and still control
  how the SimTK components are created so that XML files are not required 
  for each component.

neo:
  Code for libneocca-0.2.4.so which contains definitions and implementations of
  neo versions of CCA classes such as: ports, typeMap, componentID, connectionID
  component, version etc.

examples:
  Code for example programs.

CFRFSComb
  Code from LLNL for a 1999 version of CVODE. Also contains code for
  CCA components for CVODE and CVODES.