Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.05 KB

build-from-source.md

File metadata and controls

34 lines (28 loc) · 1.05 KB

Build from source

Requirements

Build

  • Download the source code using git clone command
  • cd stream-data-processor
  • mkdir build && cd build
  • cmake ..
  • make <target>
  • Executable file is located at the bin directory: ./bin/<target> --help

Some instruments for development

  • cmake flag -DENABLE_TESTS=ON enables tests building
  • Running the apply_clang_format.sh script is recommended before creating a Pull Request
  • test_script.sh allows you to run unit tests and lint checkers