livenet123 / Newton

Newton Coin Project
GNU Lesser General Public License v3.0
10 stars 11 forks source link

Build Status Build status

Building Newton

On ubuntu:

Dependencies: GCC 4.9 or later, CMake 2.8.6 or later, and Boost 1.55. You may download them from:

Alternatively, it may be possible to install them using a package manager.

sudo apt-get install build-essential libboost-all-dev git cmake
git clone https://github.com/livenet123/Newton.git
export CXXFLAGS="-std=gnu++11"
cd Newton
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release .. && make

The resulting executables can be found in build/release/src.

On Windows:

Dependencies: MSVC 2013 or later, CMake 2.8.6 or later, and Boost 1.55. You may download them from:

To build, change to a directory where this file is located, and run this commands:

md build && cd build
cmake -G "Visual Studio 12 Win64" .. -DCMAKE_BUILD_TYPE=Release
MSBuild Newton.sln /p:Configuration=Release /m

OR you can open Newton Solution in Visual Studio and then do Build.

Good luck!