Skip to content

sys-bio/libroadrunner-deps

Repository files navigation

Build Status

libroadrunner-deps

Dependencies for Roadrunner. See http://libroadrunner.org/ for more info on Roadrunner.

Prebuilt binaries

May be available under the releases section. Be sure to check that the compiler you are using matches the one used for building the prebuilt binaries. If not, you will have to build yourself.

Build instructions

Assuming cmake is ready for usage:

WARNING: On Windows use the "x64 developer tools shell" rather than cmd or powershell. This ensures you build 64-bit roadrunner.
$ git clone https://github.com/sys-bio/libroadrunner-deps.git --recurse-submodules
$ cd libroadrunner-deps
$ mkdir build
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX="../install-release" -DCMAKE_BUILD_TYPE=Release ..
$ cmake --build . --target install --config Release

Replace Release with another configuration (like Debug) to build in another cmake configuration.