Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
export INTROOT=~/workspace/introot
export LD_LIBRARY_PATH=$INTROOT/lib:$LD_LIBRARY_PATH
make all install

Add component to CDB

Code Block
languagebash
vim $ACS_CDB/MACI/Components/Components.xml

Add the following item:

Code Block
languagebash
titleComponents.xml
<e Name="HelloWorldCPP" Code="HelloComponentImpl"
                        Type="IDL:acsws/workshop/HelloComponent:1.0"
                        Container="bilboContainer" ImplLang="cpp" />

Testing

Create client python file:

...