Skip to content

Build from source

temehi edited this page Nov 7, 2017 · 2 revisions

In order to build slimm from its source code you need:

  • cmake(v3.0 or higher)
  • gcc (v4.9.1 or higher) (an equally up-to-date version clang should also work but is not tested)

Use the following set of commands to download and compile slimm from source code.


    git clone --recursive [email protected]:seqan/slimm.git slimm-src
    mkdir slimm-build
    cd slimm-build
    cmake ../slimm-src
    make

If you want to build a portable executable you can use -DSLIMM_NATIVE_BUILD=OFF and -DSLIMM_STATIC_BUILD=ON cmake flags.

Clone this wiki locally