===============
Why?
Because I need a place where to store little bits of code. Usually
these bits of code are always rewritten.
================
License
This software is under Simplified BSD license/FreeBSD license.
See LICENSE file for more details.
================
Portability
This code is portable to Linux and Windows at least. On other platforms I didn't
test. For Windows mingw32 compiler and Visual Studio compiler were used.
================
Quick Instructions (I assume you're in the root directory of source tree)
1. under GNU/Linux
1a) build for linux
mkdir _linux
cd _linux
cmake ..
make
1b) cross compile for Windows (change the toolchain according to your
installation)
mkdir _windows
cd _windows
cmake -DCMAKE_TOOLCHAIN_FILE=../Toolchain-cross-mingw32-linux.cmake ..
make
2. under Windows you can generate projects for Visual Studio and compile from IDE