XQuilla/README

18 lines
310 B
Text
Raw Normal View History

2020-02-17 22:13:50 +01:00
This is XQilla, a C++ implementation of XQuery and XPath 2.0 based on Xerces-C.
Build Instructions
------------------
2020-02-17 22:17:06 +01:00
1. Download a source distribution of Xerces-C 3.0
2. Build Xerces-C
2020-02-17 22:13:50 +01:00
2020-02-17 22:17:06 +01:00
cd xerces-c-3.0.0/
./configure
2020-02-17 22:13:50 +01:00
make
4. Build XQilla
cd xqilla/
2020-02-17 22:17:06 +01:00
./configure --with-xerces=`pwd`/../xerces-c-3.0.0/
2020-02-17 22:13:50 +01:00
make