Quickstart

To hook into LIBRA you need to:

  1. Add the libra repository as a sub-module libra/ in your repo.

  2. Link libra/cmake/project.cmake -> CMakeLists.txt in the root of your repo. On linux:

    ln -s libra/cmake/project.cmake CmakeLists.txt
    
  3. Create cmake/project-local.cmake in the root of your project repo. See How To Hook Into LIBRA for more details.

After you hook in, you can do:

mkdir build && cd build
cmake ..
make

As you would expect.