Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 673 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 673 Bytes

atcommons

atcommons is a package that contains common utilities and data structures used across the atSDK.

Building Source

You can build atcommons from source and receive a static library, libatcommons.a, to be used in your projects.

  1. Get ahold of the source code either via git clone or from downloading the source from our releases:
git clone https://github.com/atsign-foundation/at_c.git
cd at_c/packages/atcommons
  1. CMake configure
cmake -S . -B build
  1. Build
cmake --build build
  1. Now you have the libatcommons.a static library which can be found in the build directory.
cd build
ls -l libatcommons.a