C ABI headers shared by every Liara Engine module.
This repository defines the contract between modules of the Liara Engine. It contains only C headers: types, function declarations, version macros, result codes. No implementation lives here.
Every module that consumes or implements an interface depends on this repository. A breaking change here ripples through every consumer, so the rules for evolving these headers are stricter than for any other module.
Phase 0 — bootstrap. The header set is incomplete and may change freely until the first tagged release.
Most of the time you will not build this repository on its own; it is consumed by other modules through find_package(LiaraInterfaces) or add_subdirectory(). To verify the headers compile and the tests pass in isolation:
The full development setup (Vulkan SDK, vcpkg, presets, etc.) is documented in the meta repository's docs/BOOTSTRAP.md.
In a consumer's CMakeLists.txt:
In a consumer's vcpkg.json, no entry is needed: this library is header-only and resolved through the workspace build or through CMake package config.
Released under the MIT License.