First steps in C++

$ git clone --recursive https://github.com/mitsuba-renderer/drjit
$ cd drjit
$ cmake -S . -B build
$ cmake --build build

This will by default build everything (JIT, automatic differentiation library, Python bindings). Alternatively, the previous cmake command can be invoked with extra parameters for more fine-grained control:

$ cmake -S . -B build -DDRJIT_ENABLE_JIT=1 -DDRJIT_ENABLE_AUTODIFF=1 -DDRJIT_ENABLE_PYTHON=1

C++ interface

TBD