Skip to content

Latest commit

 

History

History
27 lines (13 loc) · 427 Bytes

BUILD.md

File metadata and controls

27 lines (13 loc) · 427 Bytes

Toolchain

  1. For pure Haskell libraries:

    1. stack
  2. For external C++ components

    1. CMake

Everything except swarm

Everything except swarm is pure Haskell. So build it with

$ stack build <component name>

swarm

  1. Build external C++ components out-of-tree

    $ (cd _build && cmake .. && make)

  2. Build swarm

    $ stack build swarm