How to compile and run a C example
Before you can clone the example application repositories you will need to install git.
$ sudo apt-get install git
To begin working with the C example applications we will clone all source code from the public GitHub repo with git.
$ git clone https://github.com/PolySync/PolySync-C-Examples.git
All C examples are built using Make. We will demonstrate the build steps using the publish-subscribe example.
$ cd $PSYNC_HOME/examples/c/publish_subscribe
$ make
To run the application supply the relative path.
$ ./bin/polysync-publish-subscribe-c
You can quickly install the binary to the system -- PSYNC_HOME/bin -- using the make install command.
$ make install
2 Comments