libharkio3
=========

Preparation
------------------
You can just do
  sudo sh bootstrap.sh
for the following preparation.

* installing dependent packages
sudo apt-get install libxml2-dev libzip-dev
sudo apt-get install lcov python-pip
sudo pip install gcovr
tar xzvf check-0.9.10.tar.gz
cd check-0.9.10
./configure
make
sudo make install
cd ..

[for libharkio3 users] Compile without libharkio3
-------------------------------------------------
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Production ..
make
sudo make install

* FYI
You can use CMAKE_INSTALL_PREFIX to specify the install path
   cmake -DCMAKE_BUILD_TYPE=Production -DCMAKE_INSTALL_PREFIX=$HOME/local .


[for libharkio3 developers] Compile with libharkio3 tests
---------------------------------------------------------


* make
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make all

* run test
make unittest
make coverage
google-chrome cov/index.html (or firefox cov/index.html whatever)


(c) T.Mizumoto
