Vinctus-Arce is a RPG-Survival game placed in a fantasy world, and more precisely in a deep dungeon.
The development has been put on hold until further notice.
Requires CMake 3.14+. To obtain it, either:
- download it from official distributor here
- install it using pip
pip install cmake
orpip install --user cmake
if you don't have root privilages - build and install from sources
To build and install Vinctus Arce, run in root project folder following commands:
mkdir build
cd build
cmake ..
cmake --build .
Vinctus Arce will then be built and installed to PROJECT_ROOT/bin
directory and should be ready to be played.
When running cmake ..
command for generating build files, and you want to use MSVC to compile Vinctus Arce,
you first have to run vcvarsall.bat (see where to find it) in the shell you'll use and then choose one of the following generators using -G switch.
cmake -G"Visual Studio <VERSION> <RELEASE YEAR>" ..
cmake -G"NMake Makefiles" ..
cmake -G"NMake Makefiles JOM" .. // if you have jom build system installed
"Visual Studio <VERSION> <RELEASE YEAR>"
can be for example "Visual Studio 16 2019"
. To find out all generators available, type cmake --help
.