VoxSim: Installation guide - GiorgosMethe/Soft-Robots-Novelty-Search GitHub Wiki

VoxSim

You can compile the VoxSim project in QtCreator, choosing in build settings the appropriate kit, both 4.8.1(qt4) and 4.8.4(qt4) work fine.

Warning: Be sure your machine has QtCore, QtXml, Boost libraries installed.

  • You can compile it with qmake without QtCreator needed. Inside VoxSim/ folder run:

$ qmake -o Makefile VoxSim.pro

$ make

  • VoxSim project can be compiled with CMake. Inside VoxSim/ folder run:

$ mkdir build

$ cd build

$ cmake ..

$ make