/
How to use xerces-c with FIX Antenna C++
How to use xerces-c with FIX Antenna C++
Some FIX Antenna C++ API functions require Xerces-c headers. To compile your application with xerces-depended code follow these instructions:
Windows:
- Download and extract xerces-c 3.1.1 sources from offical site: https://archive.apache.org/dist/xerces/c/3/sources/xerces-c-3.1.1.zip
- Set XERCESCROOT environment variable to extracted folder.
- Add path to xerces-c 3.1.1 headers (%XERCESCROOT%/src) as Additional include directories in your application project properties.
- Complie your application.
Linux:
- Download and extract (e.g. to /home/user/environment/) xerces-c 3.1.1 sources:
$ wget https://archive.apache.org/dist/xerces/c/3/sources/xerces-c-3.1.1.tar.gz
$ tar xf xerces-c-3.1.1.tar.gz -C /home/user/environment/ - Set XERCESCROOT environment variable to extracted sources:
$ export XERCESCROOT=/home/user/environment/xerces-c-3.1.1 - Add include directory $(XERCESCROOT)/src to CXXFLAGS flags (e.g. CXXFLAGS+= -I$(XERCESCROOT)/src in Makefile)
- Compile your application.
, multiple selections available,
Related content
FIX Antenna C/C++/.NET upgrade instruction
FIX Antenna C/C++/.NET upgrade instruction
More like this
FIX Antenna C/C++/.NET Release Notes
FIX Antenna C/C++/.NET Release Notes
More like this
How to compile FIX Antenna C++ samples with different Visual Studio toolset.
How to compile FIX Antenna C++ samples with different Visual Studio toolset.
More like this
How to build your application with FIXAntenna C++ on Linux
How to build your application with FIXAntenna C++ on Linux
More like this
How to build your application with FIX Antenna .NET libraries
How to build your application with FIX Antenna .NET libraries
More like this
FIX Antenna Quick Start Guide
FIX Antenna Quick Start Guide
More like this