Sources
Latest release
This is the source for the latest stable release.
All current and older release files can be found at the sourceforge project page.
Development version
The current development version resides in a mercurial repository at sourceforge.
A local clone of the development repository can be created by calling
hg clone http://hg.code.sf.net/p/qastools/code qastools-hg
This will create a new folder qastools-hg in the current directory.
To compile and run qastools create an install and a build directory and run cmake and friends there.
cd qastools-hgmkdir buildmkdir installcd buildcmake .. -DCMAKE_INSTALL_PREFIX=../installmake -j8make install../install/bin/qasmixer
After a change in the development repository the local repository can be updated by calling
cd qastools-hghg pullhg update
It's safer to also update the build cache before rebuilding
cd buildmake rebuild_cachemake -j8make install../install/bin/qasmixer