Compiling examples stand-alone on Linux platforms:
---
To compile under g++ a command-line of the following form is required. Each example will compile stand-alone:
g++ AMDemodulationExample.cpp -I ../source/inc -L ../bin/linux/x86_64 -ltrf -lpthread

Note to run, the a.out must be in the LD_PATH context of libtrf.so - this can be accomplished by exporting
the environment variable LD_LIBRARY_PATH with the suitable linkage. For example:

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<path to libtrf.so>

Note that each example will be discovering receiver devices accessible on the local network only.

Compile examples stand-alone on windows platforms:
---
This assumes you have Visual Studio 2017 or later installed.

1. Configure VS2017 'cl' to run from the command-line targetting x64
    "C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsDevCmd.bat" -arch=x64

2. Compile the required example. An example command line to generate 'example.exe' is:
    cl AMDemodulationExample.cpp ../bin/x64/libtrf.lib -I ../source/inc /link /out:example.exe

3. Put a copy of libtrf.dll in the current directory, or ensure that it is found via the users LD_PATH environment
   variable.
