XQuilla/README

18 lines
312 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:23:16 +01:00
1. Download a source distribution of Xerces-C 3.1.2
2020-02-17 22:17:06 +01:00
2. Build Xerces-C
2020-02-17 22:13:50 +01:00
2020-02-17 22:23:16 +01:00
cd xerces-c-3.1.2/
2020-02-17 22:17:06 +01:00
./configure
2020-02-17 22:13:50 +01:00
make
4. Build XQilla
cd xqilla/
2020-02-17 22:23:16 +01:00
./configure --with-xerces=`pwd`/../xerces-c-3.1.2/
2020-02-17 22:13:50 +01:00
make