Clone the repository into where you want to put it, I recommend in a vendor folder or similar
git clone https://github.com/Vatnar/VLA
In your main CMakeLists.txt:
add_subdirectory(vendor/VLA)
target_link_libraries(your_target PUBLIC
VLA
)You should now be able to include for example
#include "VLA/Matrix.hpp"
#include "VLA/Vector.hpp"And use the VLA library.
Currently VLA is only available as source code, but in the future prebuilt binaries will be released for major platforms.