Skip to content

Compilation

namreeb edited this page Apr 19, 2020 · 1 revision

namigator has been built and lightly tested on Linux (gcc) and Windows (cl).

Linux Example

cd namigator
rm -rf build
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX:PATH=/var/namigator -DCMAKE_BUILD_TYPE=Release
make -j16
make install

Windows Example

cmake .. -DBOOST_ROOT=c:\\local\\boost_1_68_0 -DBOOST_LIBRARYDIR=c:\\local\\boost_1_68_0\\lib64-msvc-14.1 -DCMAKE_INSTALL_PREFIX:PATH=c:\\namigator
cmake build install

Testing

At the present time there are no formal unit tests for namigator, however the issue tracker contains several likely candidates. All users are encouraged to submit additional issues with any areas in the game world that are known to cause problems.

Clone this wiki locally