/prpa

Parallel Programming Project

Primary LanguageC++

Install

  1. Untar the archive
tar xf prpa-src.tar.gz

  1. Create your build directory
mkdir build && cd build
  1. Install project dependancies with the conan package manager.
conan profile update settings.compiler.libcxx=libstdc++11 default
conan install .. --build missing

(using a C++ package manager avoid version incompatibities)

  1. Build the project (in Debug or Release) with cmake
cmake .. -DCMAKE_BUILD_TYPE=Debug

or

cmake .. -DCMAKE_BUILD_TYPE=Release