This is the developer repository of ViennaMOS. ViennaMOS is currently in a prototype state. If you are interested in contributing to this project, please leave comments to share your views on the most urgent tasks to advance ViennaMOS in a productive state. The source code is available under the GNU GPL. Git snapshot packages and releases are available at sourceforge.
- Qt 4.8
- VTK 5.10.1 (with Qt support!)
- Boost >=1.47
To build the developer version of ViennaMOS, simply clone the repository and issue the following suggested commands (the following steps are for Unix-based systems):
$> cd viennamos-dev # the checked-out GIT folder $> mkdir build # the build folder
Configure the build, default build type is the 'optimized/release' mode:
$> cmake ..
or for configuring a build with debugging symbols use:
$> cmake -DCMAKE_BUILD_TYPE=DEBUG ..
Now build and install the executable and libraries (install folder is a subfolder of the build folder):
$> make -j4 # adjust to your CPU core count for efficient parallel building $> make install